Archived topic
remove underlines of link from archive post articles
13 replies · Started by steven on February 3, 2022
Hi, how i can remove underlines of link from archive post articles
Hi there,
in Customizer > General set the Underline Links to Never
Thanks David, I only want to remove for the articles from the blog archive. I don't want to delete on all the blog
Can you share a link to where i can see them ? Then i can decide wether its better to remove ones or add others
Yes of course
Try this CSS:
.dynamic-content-template a {
text-decoration: none;
}
Yes it's working thanks you David
You're welcome
after adding this code, I lost the center of my H1 title on my articles, yet I still see the css code used to center the H1 title.
Attached is an image of the css codes
Hi Steven,
That's quite unusual. Can you link us to a sample page w/ the h1 that lost its center styling? So we can inspect and see what's removing it.
You can use the private information text field to provide the site detail/s -
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Hi Elvin,
of course,`
Thanks you
These two CSS rules:
.single h1.entry-title {
text-align: center;
}
.dynamic-content-template a {
text-decoration: none;
}
Remove them and then add them back at the top of Customizer CSS
Thanks you Elvin and David, it's working.
Glad to hear that.