ChrisRChamberlain
Programmer
Hi all
Have three divs, one including a form, within a main div which render correctly in IE but not in other browsers.
CSS is
HTML is
IE positioning is as expected, form position and third div position in other browsers is top left.
What's missing please?
TIA
PDFcommander.com
motrac.co.uk
Have three divs, one including a form, within a main div which render correctly in IE but not in other browsers.
CSS is
Code:
div#thumbhelp{
[tab]position:absolute;
[tab]color:#088FAD;
[tab]font-family : Arial, Helvetica, sans-serif;
[tab]font-size:11px;
[tab]top:150px;
[tab]left:172px;
[tab]width:140px;
[tab]background: #D6EBEF;
}
div#findinpage{
[tab]position:absolute;
[tab]left:310;
[tab]top:150;
[tab]width:130px;
[tab]height:20px;
[tab]background: #D6EBEF;
}
div#findhelp{
[tab]position:absolute;
[tab]left:445;
[tab]top:150;
[tab]color:#088FAD;
[tab]font-family : Arial, Helvetica, sans-serif;
[tab]font-size:11px;
[tab]background: #D6EBEF;
}
Code:
<div id="thumbhelp"> Move your mouse over a<br />
thumbnail for more images </div>
<div id="findinpage">
[tab]<form id="f1" style="margin:0px; padding:0px;" action=""
onSubmit="if(this.t1.value!=null && this.t1.value!='')
findString(this.t1.value);return false"
>
[tab]<input type="text" name=t1 value="" size=10 />
[tab]<input type="submit" name=b1 value="Go" size=10 />
[tab]</form>
</div>
<div id="findhelp"> Enter a word or phrase that you would<br />
like to find in a vehicle's specification </div>
</div>
What's missing please?
TIA
FAQ184-2483
Chris PDFcommander.com
motrac.co.uk