• warhorseamber

    (@warhorseamber)


    Hi there,
    I have been cracking my head over an issue with the background color of my page.
    I would like to make the page entry transparent, so you can see the custom background behind it.
    I’ve been able to find the tag where the problem most likely can be solved.
    It’s the ‘.entry-content’ tag that i think needs to be changed to background-color: transparent.
    But it just won’t work. I hope someone can help me?

    Cheers and thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    This one’s a bit weird, I’ve been fiddling with it myself.

    }

    .post-content,.single-post-content,.post-comments,.comments-area{
    background-color: transparent; (This used to be white)
    clear: both;
    margin-bottom: 2em;

    There will be left the box shadows so change them (the line directly beneath the above line of code) to this:

    .post-content,.single-post-content,.post-comments,.comments-area{
    background-color: transparent;
    clear: both;
    margin-bottom: 2em;

    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0);
    -moz-box-shadow: 0 0 0px rgba(0, 0, 0, 0.0);
    -webkit-box-shadow: 0 0 0px rgba(0, 0, 0, 0.0);
    -o-box-shadow: 0 0 0px rgba(0, 0, 0, 0.0);
    }

    I haven’t tested it for other sections of the blog (this is just for the body) but it should be the same 🙂

    I hope this helps, and good luck!

    Whoops, sorry, that’s the entire line of code I posted the second time. Just use that, you get my point 😉

    P.S I love your website, how did you include the scroll up button at the base? Is there a forum you could point me to?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Background color page to transparent’ is closed to new replies.