Archived topic
How can I remove underlines of post titles when using query loop
3 replies · Started by Lewis on January 19, 2023
Hi
I am using query loop to display recent posts on my homepage.
The post titles which are auto generated by query loop in headline blocks are underlined. I want to remove the text underline of the post titles but cannot find the option to in settings.
Please help ? Thank you.
Hi Lewis,
Add remove-underline to the class list of the Headline Block.
Adding Custom Classes: https://wordpress.com/support/wordpress-editor/adding-additional-css-classes-to-blocks/
Then, add this through Appearance > Customize > Additional CSS:
.gb-headline.remove-underline a{
text-decoration:none;
}
Thank you Fernando!
You're welcome, Lewis!