Site logo

Archived topic

center titles in pages but not posts

1 reply · Started by dale on November 26, 2017

Viewing posts 1–2 of 2

I have been using the CSS

/* formatting for post and page titles if displayed */

h1.entry-title, article.page .entry-header h1.entry-title {
   text-align:center;
}

to center titles on all the pages and posts on my website. But I'd like to switch so that my posts go to the default left alignment while my page titles are still centered. How should I tweak it?

Hi there,

Try this:

.single h1.entry-title {
    text-align: left !important;
}
This archived topic is closed to new replies.