Adam Helweh wrote:

> http://carlpritchard.secretsushi.com/homepage_template.html

The numbers don't add up.


#whatsnew_box {
        width: 266px;
        margin-left: 20px;
}

...is too wide for...

#secondary_column {
        width: 280px;
}

...which causes overflow in most browsers, but 'auto-expansion' in IE6.
The result is that the entire 'secondary_column' drops in IE6.

Change the margin to...

#whatsnew_box {
        width: 266px;
        margin-left: 14px;
}

and you'll get a pretty good line-up in all browsers, with 2px to spare
for those side-borders.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to