Heading picture in IExplorer

They have: 3 posts

Joined: Jan 2009

Hello Everybody,

I´m new here but looking for an urgent help.
I´m building several websites. I often use HTML codes as well. Last time I realised that my heading picture does not appear in IE, but it does in Opera, Netscape, Firefox and Chrome. PLease check it:

http://www.alternative-energy-use.com

Every page of my website has got the same problem except this one:

http://www.alternative-energy-use.com/advantages-and-disadvantages-of-al...
That works very well in every browser, means the heading picture is visible in IE, Opera, Firefox, Chrome, Netscape, ...

What´s the problem between my pages? I´ve done them same way.

Please help me ASAP

decibel.places's picture

He has: 1,494 posts

Joined: Jun 2008

In your main3.css stylesheet change background-image to background for td.headerbg

I noticed another problem, it works without fixing this, but you should change "background repeat" to "background-repeat"

EXISTING CODE

td.headerbg {
background-color:#fff;
height: 180px;
width: 100%;
background-image: url('http://www.alternative-energy-use.com/images/heading.jpg');
background repeat: no repeat;
font-size: 93%;
}

NEW CODE

td.headerbg {
background-color:#fff;
height: 180px;
width: 100%;
background: url('http://www.alternative-energy-use.com/images/heading.jpg');
background-repeat: no repeat;
font-size: 93%;
}

They have: 3 posts

Joined: Jan 2009

Hi decibel-places!

Thanks ever so much for this prompt answer! Finally the problem is fixed Smiling

Cheers,
Deer

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.