Click to See Complete Forum and Search --> : Background image showing, but nothing else in IE


j_lyman
08-28-2008, 08:33 PM
This is a problem that I haven't run into before, but maybe someone can help me out.

I have a website that I have put together using PHP, XHTML and CSS. I am working in a Mac environment and so don't have the luxury of multiple browsers at my fingertips. But I usually have only minor problems with layout. This one takes the cake! Website displays fine in Firefox 3 and Safari 3. I used browsershots.org to see what the layout is looking like in IE and in versions 5, 6 and 7 all that is being displayed is the background image! None of the website layout is visible! :eek:

Has anyone run into this before? I need some help to figure this out. The website URL is: growthprinciples.com/newsite

Thanks in advance.

tracknut
08-28-2008, 08:52 PM
<!--[if lte IE 7]>
<style type="text/css">
#mainNav ul li ul {margin-left: -25px;}
#mainNav ul li ul li ul {margin-left: -25px;}
<![endif]-->


Looks to me like you're missing a </style> in there. So IE thinks the entire page is a stylesheet.

Dave

j_lyman
08-28-2008, 10:58 PM
Sometimes it's the easiest things! :rolleyes:

Thanks. I'll try that tomorrow morning.