Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Images don't display in IE but do in Opera and NS 1

Status
Not open for further replies.

mkrausnick

Programmer
Apr 2, 2002
766
US
I'm stumped.

Consider the page:
which I converted to use style sheets from

The old page displays fine in all browsers. The new page displays fine in Opera and NS6, but the images do not appear when viewed in IE6.

I visually compared the html and I can't see what is causing this. What am I missing?

Mike Krausnick
Dublin, California
 
Looks like IE doesn't like something about the position: relative declaration in your t_olive.css for #content. I have inspected the problem and realized it went away by removing that part:
Code:
#content {
 [s][COLOR=red]position:relative;[/color][/s]
 margin:0 0px 0 144px;
 z-index: 5;
 background:#ffffff;
 color: #000000;
}
It produces the same result in my Mozilla and IE (except shows the pictures). Hope it helps.
 
That appears to have done the trick. Thanks!

Mike Krausnick
Dublin, California
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top