What theme are you using? You need to be more specific in your posts.
I’m using the WordPress Default 1.6 theme by Michael Heilemann
This is what you are after:
body {
background: #d5d6d7 url('images/kubrickbgcolor.jpg');
}
If you wanted to, you could just change the background image, or delete it to this:
background: #000;
Also keep in mind that you might have to edit some other jpg files to display correctly with a dark background.
Anthony
I did what you said.
For some reason when i refresh the page it goes black then a second later it changes to white again!!
I don’t get it.
I’ve checked the code but i don’t see any code for the colour white so i don’t know why the white background appears!
Its not actually a white background, its a background image that is tiled.
You can view the background image by going to this url:
http://www.yoururlhere.com/wp-content/themes/default/images/kubrickbgcolor.jpg
This is how im assuming you currently have your css:
body {
background: #000000 url('images/kubrickbgcolor.jpg');
}
When in fact this is how it needs to be:
body {
background: #000000;
}
If this does not fix the problem, I would suggest either posting your url so we can investigate further, or you might want to possibly brush up on your css.
Anthony