The background image is missing in ie7; only ie7 has an issue.
The site is here http://www.competition4ct.com/.
This is the call I’m using for the background image:
html { background : ("source-file.png");}
Why isn’t the background image appearing?
You seem to be missing the
urlin front of your file name. It should be:Notice that I’ve also used
background-imagehere, notbackground. You can use thebackgroundshortcut, then it would look something like this:It’s also more usual to put a background on the
bodytag, although I’m sure thehtmltag will work in most cases as well.