Archived topic
Center author name in author archive page
6 replies · Started by Oliver on November 25, 2021
Hi - I am trying to center align the author name on the author archive page. If you look at the link below the name "George" is to the left, but I would like it centered.
[edited]
Could you advise what CSS to use, please? Thank you!
Hi Oliver,
Do you want to center the archive title for author archive only or all archives?
Let me know :)
Hi Leo, ideally for all archive pages. I have managed to do it here:
[edited]
The category is centred using CSS, but I can't figure out how to centre the author, or ALL archive titles. I also want to be able to centre the 'category description', although I haven't actually added this on the site yet.
Thank you
Ollie
I used the following CSS to make the category archive title centred:
h1.page-title {
text-align: center;
}
But the author archive title is still aligned left.
Try this:
.author .page-header .page-title {
justify-content: center;
}
Yes, that worked! Thank you.
No problem :)