• Hello,

    I just upgraded to the latest version of wordpress (3.3). All of sudden, the background color I had chosen for my site is no longer showing. I went to the “Background” section under “Appearances” to adjust it and save it again, but the background just remains white instead of displaying the color I have chosen. Can someone help me with this please? You can see my site here: https://www.findinghopewithin.com/

Viewing 7 replies - 16 through 22 (of 22 total)
  • So you are assuming that when a theme option is changed the stylesheet is directly modified or is this set in the database and then called from a php file???

    I contentiously disagree that the OP should overlook the failure of the theme option to be set properly and highly recommend they review why this is occurring (and not just applying a quick fix).

    I do not know where on my css stylesheet I can change the background color. My background color worked fine til’ about 2 months ago, when the background color went blank. I go into the theme’s appearance/background section, and it shows the color I want, but not showing up on actual page.

    I looked through comments above, but jsut don’t know where to insert my color number in my stylesheet. Website – https://www.greenbeltblog.org.

    Thanks for any info!

    I see the background in IE and FF. It is set to rgb (249, 249, 240); in style.css under body.

    The color should be green – #427222 (66, 114, 34 in RGB)(which is what it shows up as when I click background in theme). The color you are seeing is pretty much white.

    In body – I put RGB in as follows:

    body
    {
    background: #rgb(66,114,34);
    margin: 0;
    font: 76%/1.6em verdana, tahoma, arial, sans-serif;
    color: #000;
    text-align: center;

    Background didn’t change to green, but text did. Oi vey. Help?

    Do a search for body in style.css. When you find the right one with the rgb, just put your values in. There is not a # before rgb.

    And for me, I just change one thing at a time so as not to overload my circuits.

    Thanks – I took out the # sign, and works great. I got text back to black as well. Thanks for help kmessinger!

Viewing 7 replies - 16 through 22 (of 22 total)
  • The topic ‘Problem displaying background color with latest version’ is closed to new replies.