Assuming that's the correct path to the image and it's there, that should be fine. It won't replace the color. It will show over it and be top center no repeat.
It would be better to use background-color:
Code:
body {
background-color
: #151515;
background-image: url(../../images/background_images/abstract_background1.jpg);
background-repeat: no-repeat;
background-position: center top;
}
Or the shorthand combined notation:
Code:
body {
background: #151515 url(../../images/background_images/abstract_background1.jpg) no-repeat center top;
}
If you want a different color you can specify it. You can leave the color out or specify transparent, but for the body that would end up being white in most cases.
If you want more help, please include a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks