URGENT! Why did activating CSS take away my background?

  • Unknown's avatar

    I upgraded the CSS on my site and now my background image is not visible. How do I fix that?
    Blog url: http://kokorojudocoach.wordpress.com/

  • It looks like you entered a bunch of CSS from another theme, or perhaps the same theme, thus overriding things like your own background choices.

    This is the main culprit:

    #wrapper {
    width:900px;
    background:rgba(255,255,255,0.88);
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    border-radius:6px;
    margin:30px auto 140px;
    padding:30px 30px 0;
    }

    Try removing the background line from that.

    In general, I recommend only inserting your CSS changes in the CSS tab there, not the whole CSS file. The theme will supply its own, and your changes will override what they need to.

  • The topic ‘URGENT! Why did activating CSS take away my background?’ is closed to new replies.