• Which part of the code inside the style sheet do i change to get rid of the white background?

    I wish for a black background instead.

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • What theme are you using? You need to be more specific in your posts.

    Thread Starter forbescreatives

    (@forbescreatives)

    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

    Thread Starter forbescreatives

    (@forbescreatives)

    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.

    Thread Starter forbescreatives

    (@forbescreatives)

    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:
    https://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

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Main Background Default Theme Colour’ is closed to new replies.