Quote:
|
IE6 doesn't do widths well and it adds a double margin on things that are floated.
|
Well, not entirely -- IE will double the margin of a floated element if you ALSO give that element a margin in the same direction, ie: float: left with a left margin value. BUT, you' didn't do that so it's not the problem.
Ok, this is what I found:
Your #left block is defined as 190px wide BUT, your LI inside that container is 189px wide PLUS 10px padding = 199.
#right is 720px wide plus 2px of border = 722px total width
722 + 190 + 10 = 922px wide - 2px too wide for IE to stand.
I would reduce the padding on the <li> in your nav so that the list stays inside the 190px of the #left div. Thanks IE's broken box model for this one !
By the way.. nice design  I do Digital Scrapbooking, in fact, a new challenge started today that I have to work on !
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
Last edited by LadynRed; 08-01-2007 at 08:34 PM..
|