Archived topic
Centering Page Titles
3 replies · Started by Simon on May 15, 2020
Hi there, an hour into my GeneratePress journey and I am so far very impressed.
First question though:
I've found this code for centring post titles but is it possible to centre page titles?
.single h1.entry-title {
text-align: center;
}
Many thanks
Simon
Hi there,
.single makes it target the single posts only.
Try just this:
h1.entry-title {
text-align: center;
}
Is this code put in the css block on Customize> additional CSS? If not where does it go?
Hi there,
so this:
h1.entry-title {
text-align: center;
}
Is a CSS Rule. And you would add that code in the Customizer > Additional CSS :)