Archived topic
Aligning The Post Title
3 replies · Started by johnzoro on August 5, 2021
Viewing posts 1–4 of 4
How do i make the post title centred when displaying on blog roll or archives?
only on mobile
Hi there,
Any chance you can link us to the site in question?
You can use the private information field.
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
here you go
Hi there,
you can use this CSS:
h2.entry-title {
text-align: center;
}
or if you want it only centered on Mobile:
@media(max-width: 768px) {
h2.entry-title {
text-align: center;
}
}
This archived topic is closed to new replies.