• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need help with a little website debugging

Illusio

Golden Member
I've got a website I've just about finished but have one bit of cross browser compatibilty that is giving me issues. Everything works fine in IE 7, Firefox (mac and PC) and Safari, but I can't figure out why its not working in IE 6.

http://www.illusionaryglass.com/fd

There is a gap between the top links area and the header image that only appears in IE 6. The two areas should be flush.

Can any CSS experts help me fix this?
 
I don't see any differences, can you take a screen shot in both, so I can see what you are trying to fix?
 
😕

Why are you using separate tables? (Tables at all for that matter.)

Anyways, there is a margin between the tables that is not collapsing the way it should be in newer browsers. I noticed a few pixel difference in what you specified and what the actual div height was/is.

Other than that, I can't get into it because tables make my brain hurt after using CSS only for so long.
 
Did you create that CSS?

It looks like there is already an unordered list defined in the CSS, but in the actual HTML you are using a table. Why not just use:

<ul>
<li><a href="services.html">services</a></li>
<li><a href="portfolio.html">portfolio</a></li>
<li><a href="about.html">about FDAS</a></li>
</ul>

instead of your table?
 
Back
Top