Skip to content Skip to sidebar Skip to footer

Background Image Not Showing Up In IE8

So I have a tiny header image that repeats on the x axis, but for some reason it won't show up in IE8. Anyone know a work around?

Solution 1:

Try adding a space between ) and repeat-x.


Solution 2:

Correct code after adding space looks like this:

#header {
    background:url("images/headback.png") repeat-x;
    width:1020px;
    height:120px;
    font-family:arial;
    position:relative;
}

Post a Comment for "Background Image Not Showing Up In IE8"