Can anyone tell me why this site has a background-image on the header, and this site does not – despite virtually identical source and CSS files?
In the first one, the style is being picked up correctly, and in the second it isn’t. But there is no obvious reason why this is the case.
Help!
Thank you 🙂
The selector that’s trying to set the background image looks like this:
Since
#headeris not a descendent of.logo-image, those styles do not get applied. If, however, the selector was changed to just:or even
Then it should work (assuming the image URL is good).
Update:
I didn’t see the
.logo-imageclass on the body before, but now it’s there. There may have been some sort of caching (wink) issue in place.