FlyerTalk Forums - View Single Post - Website coding problem
View Single Post
Old Mar 20, 2008 | 4:08 pm
  #7  
KVS
FlyerTalk Evangelist
All eyes on you!
20 Years on Site
 
Join Date: Jan 2004
Location: Worldwide
Posts: 12,952
Lightbulb

Originally Posted by AC110
Do you have any idea how I can reduce that minimum width in IE, or make it behave like it does in IE?
Try to avoid the use of "float:right" for your DIVs. For example:

Code:
Instead of:
<DIV style="float: left;">      	  LEFT  COLUMN  </DIV>
<DIV style="float: right;">     	  RIGHT COLUMN  </DIV>


Use:
<DIV style="float: left; width: 400px;">  LEFT  COLUMN  </DIV>
<DIV style="margin-left: 400px">          RIGHT COLUMN  </DIV>
KVS is offline