Can someone tell me why the logo.gif on this site disappear in IE6? http://www.nielsen78.dk/temp/debug It works fine in firefox.
semantically speaking the code for the logo should be up top and not in the bottom as you have it. The Logo does not appear in IE7 either.
The reason for that is that I want the content to appear first. http://www.delorie.com/web/lynxview.html This way the first thing google and other search-engines meets is the most important on the page - the textcontent Not the logo or the menu - but the content
I'm not sure if this is something you would consider doing but the problem could be solved if you move the logo div outside of the container div: ...continued... <div id="left"> <div id="menu">Menu</div> <div id="news">News</div> <div id="related">Related</div> </div> <div id="footer"></div> </div> <div class="logo"><a href="#" target="_parent"><img src="gfx/logo.gif" alt="Home" border="0" title="Home" /></a></div> Code (markup): You can then use css to move the logo into the correct place, for example width 790, aligned in the center, with contents aligned to the left. I'm not great with css so I'm not sure why the problem occured but this seems to be 1 solution. I tried in both FF and IE7 and this works.
Sounds great, but I'm not sure on how to write the css to place the logo. Can I see your css for placing the logo?
you need only to put z-index:10; on .logo: .logo { z-index:10; left:35px; position:absolute; top:30px; } have a great day!