How to change the background and layout of blog post pages?

How to change the background and layout of blog post pages?

Hello @itsthehype,

Thanks for writing in!

Change background color:

To change background color of blog posts page, please add following CSS under Pro > Theme Options > CSS:

.single-post .entry-wrap {
    background-color: #ddd;
}

Change blog post layout:

You can change the post layout from Pro > Theme Options > Layout & Designs > Content Layout.

Thanks.

thanks for your prompt reply.
but its looking like this https://silvermanclinica.com/injuries-accidents-work/ now I want to remove that blue background.
Please also help me with font color of blog page.

Hi PrimalCreate,

The Blue background color that you see is because of the custom code that you added using a 3rd party plugin. The code is:

.site {
    background-color: #417eb6;
}

And I think you can find it in Appearance > Custom CSS, I am not sure as it is not our theme feature and it is a third party plugin.

Thank you.

Thanks. How to change font color of only blog pages?

Hi @itsthehype,

You can try adding this custom CSS:

.single-post .entry-content.content * {
    color: #000000;
}

Let us know how it goes!

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