Site logo

Archived topic

Heading Not centered on HomePage.

6 replies · Started by Daniel on September 3, 2020

Viewing posts 1–7 of 7

Hi Daniel,

I believe the cause of the issue is h1's class name.

<h1 class="h1.page-title">Best Meme's & Quotes</h1>

You can try removing h1. from h1.page-title.

It should look something like this.
<h1 class="page-title">Best Meme's & Quotes</h1>

Lets us know if it works for you.

.archive.category h1.page-title{
text-align: center;
}

This CSS code applies only to archive > category pages.

If you want it to apply on all page titles on all pages, you can use this CSS code:

h1.page-title{
text-align: center;
}

Thanks for the quick response, I have fixed it.

No problem, Glad to be of any help.:)

This archived topic is closed to new replies.