• tim85021

    (@tim85021)


    Hi, my questions are probably retarded but here’s what I’m trying to do. I want a black background on my front page so that the black background of my image, blends in with the rest of the page, and I would like all the writing that is currently on my page to be white, kind of exactly the opposite of the way it is now. I am using wordpress 3.1, and the AutoFocus 1.0.1 theme. Here is the URL for my site if you want to take a look http://www.dreamsoffreedom.us Like I said it’s probably a retarded question, but I know absolutely nothing about building websites or programming or anything like that, and I’m trying to build this on my own. Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator t-p

    (@t-p)

    I want a black background on my front page so that the black background of my image

    Find This CSS rule in your theme’s style.css:

    body {

    In that Rule, change the background-color: #ffffff; to background-color: #000000;

    and I would like all the writing that is currently on my page to be white

    1. Header/Blog Description:

    Find this Rule in CSS:

    #header #blog-description {
        color: #888888;
    }

    and change the color to #ffffff in it.

    2. menu (i.e., home, rss):

    find this CSS rule,

    #access #menu a {
        font-weight: 800;
    }
    style.css (line 69)
    a {
        color: #444444;
        display: inline;
    }

    In it change the color from #444444 to #ffffff

    3. footer

    try changing in the #footer element

    Thread Starter tim85021

    (@tim85021)

    Thanks, I think from there I can figure the color thingys out now.

    Moderator t-p

    (@t-p)

    You are welcome. 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘help with colors’ is closed to new replies.