Matt
Matt

Reputation: 1755

Logo in website is not showing in IE

Shows in all browsers except IE. The image is a tranparent png.

music.thebc.co

Thanks for the help.

Upvotes: 0

Views: 1361

Answers (3)

Owlvark
Owlvark

Reputation: 1803

In IE9 it looks like the image is placed correctly, but it just needs a higher z-index; try this CSS:

#logo {
    z-index: 10000;
}

Upvotes: 0

Nicolas Brown
Nicolas Brown

Reputation: 1574

Try using AlphaImageLoader as suggested here: http://support.microsoft.com/kb/294714

<div style="position:absolute; left:140px; height:400; width:400;
     filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
     src='image.png', sizingMethod='scale');" >
</div>

Upvotes: 0

Andrew Brock
Andrew Brock

Reputation: 1364

IE does not appreciate width:auto

Put a conditional if around the image to give IE 1 without the width

http://www.quirksmode.org/css/condcom.html

Just to be clear:

<!--[if IE]>
<img height="100" id="logo" alt="The Brilliantly Creative Company Logo" src="http://www.music.thebc.co/images/bcco_logo.png"/>
-->
<!--[if !IE]> -->
<img width="auto" height="100" id="logo" alt="The Brilliantly Creative Company Logo" src="http://www.music.thebc.co/images/bcco_logo.png"/>
<!-- <![endif]-->

Upvotes: 1

Related Questions