Blog Post Container Removal

Here is the link to my Blog post, and I’ve tried everything I can find in the forums but I can’t get the container off of my blog posts.

https://www.scottwigginsmusic.com/2018/06/26/robert-earl-keen/

I don’t want the tan colored background container. I just want a white background.

please help.

Thanks!

Hi there,

Please find this code that is in your Global CSS

.blog .entry-wrap, .single .entry-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    text-align: center;
    background-color: #dfd9c3;
}

then update it to:

.blog .entry-wrap, .single .entry-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    text-align: center;
    background-color: transparent;
    box-shadow: none;
}

Hope this helps.

I can’t find where it say’s “global css”. All mine says is “additional CSS” in my child theme. When I past code in there that I’ve found in the forums to fix this issue nothing happens. Do I need to do it somewhere else? And thanks for the reply

Hi there,

You can find it in X > Theme Options > CSS.

In case you do not find the code, you can simply add the code I suggested to the Global CSS.

Hope this helps.

that worked! thanks!

Glad it worked.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.