Site logo

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

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.