Alix Estrada wrote:

> 1. My navigation bar is perfectly placed in IE 7 and Firefox, however
> is IE 6 it is waaaay over to the right.

Add...

#tabsJ {display: inline;}

...to kill the "margin-doubling on floats" bug in IE6.

> 2. I also noticed that my page is not centered in IE 6, when it is in
> IE 7 and Firefox.

Caused by bug 1, and gets corrected by the fix.

> 3. At the bottom of the page, in IE 7 and Firefox, the bottom orange 
> line sits right under the two images above the footer, as it should. 
> However in IE 6 there is a gap of about 3 pixels.

IE6 doesn't respect declared dimensions when content is too large, and
it is.

The addition of...

* html #contentBottom {
  overflow: hidden;
}

...will correct that bug in old IE, but I do not recommend using it.

> http://itroundtable.premerabc.com/index1.html

Aside: your page triggers the "em font-resizing bug in IE5 - IE7"[1],
but is otherwise so easily broken by any amount of font-resizing in any
browser that it doesn't really matter.

regards
        Georg

[1]http://www.gunlaug.no/contents/wd_additions_13.html
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to