Centered Blog Post Titles/Headlines In Renew

Hey I’m using Renew and wondering how to make the titles of all blog posts show up in the center, both on the homepage and on the posts’ pages. Thanks -Rich

Hey Rich,

Regretfully, there’s no option for this. The CSS to override it is simple though. Please add this code in X > Theme Options > CSS.

.entry-title {
    text-align:center;
}

Hope that helps.

Thanks did the trick. Also, is there a code I can use to get rid of the little gray outlines around the post index pages or to fill them with color?

Hi Rich,

Do you mean the border around the featured image on blog page? If yes, try this to add fill add background color

.blog .entry-featured {
    background: #e5e5e5;
}

To remove border, use this:

.blog .entry-featured {
    border: none;
}

Hope this helps.

Hey Lely, I’m actually trying to target the little previews of posts that show up on the homepage and other pages from the menu. They have the post’s featured image on top with text below that. Are there codes I can use for these?

Thanks

Hi Rich,

In that case, please add this

.x-iso-container-posts>.hentry .entry-wrap {
    background-color: #fff;
    border: none;
}

As for other images around the pages, we have just removed .blog

.entry-featured {
    background: #e5e5e5;
border: none;
}

Hope this helps.

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