Click to See Complete Forum and Search --> : Content not displaying correctly in IE6


spyder84
12-01-2007, 08:38 PM
Hello. I'm new to the board and looking for some help. I have been working on this issue for days now with no luck. My page displays correctly in IE7 and Firefox, but for some odd reason, IE6 does not. I have scoured through my code and cannot figure out what the issue . Can anyone shed some light?

page address: http://www.turnoneracing.com/untitled.php

In IE6, it looks like the content on the right side of the page is pushed down as if the content does not fit the dimension I set in my code. Yet, they content all fits fine in both IE7 and Firefox. I've looked into the "double margin" bug for IE6 and tried the fix, but the issue continue. Any input would be great appreciated.

bathurst_guy
12-02-2007, 06:26 AM
Not sure unfortunately, but you spelt Products incorrectly in the bottom navigation.

ray326
12-02-2007, 04:55 PM
It has to be a left/right margin problem. Could be a box model problem, though.

Kravvitz
12-03-2007, 03:11 PM
1) 5+5+925 > 925
Part of your problem is that you don't seem to understand how the box models (http://www.dynamicsitesolutions.com/css/box-models/) work.

2) You're experiencing IE's doubled float-margin bug (http://www.positioniseverything.net/explorer/doubled-margin.html).

3) You'll want to read these as well:
Internet Explorer and the Expanding Box Problem (http://www.positioniseverything.net/explorer/expandingboxbug.html)
Min-Height for IE/Win (http://www.dynamicsitesolutions.com/css/min-height-for-msie/)
The overflow declaration (http://www.quirksmode.org/css/overflow.html)

4) Why should you avoid using tables for layout? (http://www.dynamicsitesolutions.com/html/tables-for-tabular-data-only/)

Centauri
12-04-2007, 09:28 AM
With some simplification, meaningful markup, scrapping of tables and javascript, this layout can easily be stable cross-browser without any hacks (http://www.centauriaudio.com.au/test/spyder84/).

spyder84
12-05-2007, 07:24 PM
Thank you very much for all your help.