Archived topic
I would like to customize display of the title on archive pages
3 replies · Started by Eric on March 4, 2021
BY default, titles on archive pages are aligned left. I would like to have them align center. I would also like to tweak the padding around these titles. I saw the post about redirecting archive categories to static pages but that only works for categories (and I'd rather not edit php files). I want to customize the display of titles on category and tag archive pages. I assume this can be done with CSS but my first few attempts have not worked.
Can anyone help?
Hi there,
You can try this CSS:
body.archive h1.page-title {
text-align: center;
padding: 40px;
}
Although, you may have to fine tune the padding part as .page-title's wrapper is also affected by the content padding setting in Appearance > Customize > Layout > Container.
That's perfect! Thanks
No problem. :D