Blog Margins

Hi,

My blog posts text goes right up to the edge of the screen. It looks very awkward. Can you please tell me how to add a container or at least some margin on the left hand side?

Thanks!

Hi Laurie,

Thanks for writing in! It’s because of your existing custom CSS rules. Please change the following custom CSS rules that you have in your Pro -> Theme Options -> CSS area.

.single-post .entry-wrap {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

You can change it as follows:

.single-post .entry-wrap {
    padding: 60px;
    background-color: transparent;
    box-shadow: none;
}

Hope that helps.

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