Archived topic
Make the link "Leave a comment" text bigger and a different color
3 replies · Started by Leanne on January 27, 2021
Hi,
There is a link that says "Leave a comment". I would like to make this more visible on the website to get more people to leave comments.
How can I make the text "Leave a comment" bigger and a different colour. Also, can the order be changed. So leave a comment is first and tags is second.
Thank you
Hi there,
How can I make the text “Leave a comment” bigger and a different colour.
Try this CSS:
.entry-meta .comments-link {
font-size: 20px;
}
.entry-meta .comments-link a {
color: #000000;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Also, can the order be changed. So leave a comment is first and tags is second.
This filter should help:
https://docs.generatepress.com/article/generate_footer_entry_meta_items/
Adding PHP: https://docs.generatepress.com/article/adding-php/
Perfect. Thank you!!
No problem :)