Center all the posts and justify body text

Hi! I really hope that you can help me with this.
Iโ€™m doing the redesign of a site that has more than 80 posts created before I began working. I would like to change them all in once. Is there a way that i could center the design of the container of the post, and justify the paragraphs of the body?

Thanks in advance :slight_smile:

Hi Netoui,

Thank you for writing in, container of the post are already center by default, please clarify and provide us the page URL.

To justify the content text, please add this to Theme Options > CSS

.single-post .entry-content {
	text-align: justify;
}

Cheers!

1 Like

Thanks! the site is http://www.cchv.cl and the container isnโ€™t centered in the posts as you can see.

Hi @netoui,

Please add this as well, this should center the box layout.

.single-post .x-main {
    float: none;
    margin: 0 auto;
} 
.single-post .x-sidebar {
    display: none !important;
}

Hope this helps.

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