background vs background-image
-
I created a Parent Theme following a bunch of ideas from several WordPress fans. In my host (goDaddy.com), which is configured for multisites, I created two child sites at “dumplings” and “AccesoriosCelularPR“.
As far as CSS for the “header” is concerned, both child sites’ are identical, except for the background image’s NAME, as follows:
Code for “style.css”:
@import url(‘../parentTheme/styles/backgrounds_CSS_only.css’);
div#header
{
background-color: none !important;
background-image: url(images/<image name>.png);
background-repeat: no-repeat;
background-position:center;
}Code for “backgrounds_CSS_only.css”:
div#header
{
background: #00FF00;
}My problem is that, although both codes are identical (except for the background image’s NAME), the background image is displayed at “dumplings” BUT NOT at “AccesoriosCelularPR“.
I know you guys are busy but any guidance will be appreciated. Thanks!!!
- The topic ‘background vs background-image’ is closed to new replies.