Heading picture in IExplorer
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 posted this at 16:35 — 10th January 2009.
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%;
}
Deer posted this at 13:15 — 11th January 2009.
They have: 3 posts
Joined: Jan 2009
Hi decibel-places!
Thanks ever so much for this prompt answer! Finally the problem is fixed
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.