junglist666
Technical User
http://heathrowminicab.com/minicab-booking.htm
this form is split into a left and right div
in firefox, the form looks fine..
in IE, the form starts on the left.. and on the right div it carries on from where the left form finishes...
why is this..
my page form is simple and set out like this..
<div id="wrap">
<div id="bleft">
<form>
blabla
</div>
<div id="bright">
blabla
</form>
</div>
</div>
here are the settings for my divs in the stylesheet
any ideas??
this form is split into a left and right div
in firefox, the form looks fine..
in IE, the form starts on the left.. and on the right div it carries on from where the left form finishes...
why is this..
my page form is simple and set out like this..
<div id="wrap">
<div id="bleft">
<form>
blabla
</div>
<div id="bright">
blabla
</form>
</div>
</div>
here are the settings for my divs in the stylesheet
Code:
div#wrap {width:750px; position:absolute; left:50%; margin: 0 0 0 -375px;
border:1px solid #666666; padding:0; background:#ffffff;}
div#bleft {width:374px; background:#fff; float:left; text-align:left;}
div#bright {width:374px; background:#fff; float:right; text-align:left;}
any ideas??