internet explorer - Why is the image not showing in IE7? -


i have image on page in blue bar area. shows fine in ff, safari, ie8 & chrome, not show in ie7.

here html:

<div id="featuredimage">   <img src="images/website_design_charlotte.jpg" width="960" height="159" alt="" /> </div> 

here css:

#featuredimage   { position: absolute; z-index: 9; top: 129px; left: 0; } #featuredimage img   { width: 986px; height: 159px; position: relative; z-index: 10; } 

would appreciate getting show in ie7.

thanks!

a few lines down in html have this:

<!--[if ie]>     <link rel="stylesheet" type="text/css" href="styles/style-ie.css" /> <![endif]--> 

... means other browsers using water.css stylesheet, ie using style-ie.css. since is working ie8, problem may in code determines browser version.


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -