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>