I want to remove the underline from the header tag that is being used in an Armadillo Headlines stack. Having an underline with each headline is just too busy. I am using the theme Flood. I am able to select different tags i.e. H5, H4 but they all have an underline. It seems that there must be an easy way to do this with CSS override or something even easier. Any help appreciated!
Is it because the headings in the blog are treated as links? If so, there’s an option to remove underlines from links in Master Styles for Flood.
Make sure If you remove the underline that it’s clear to the user that it’s a link.
For help with CSS a URL to the site would be great.
1 Like
Unchecking “underline links” did the job! I may add a note to click on the desired title. Thanks.
Alternatively, as @teefers said, that may be confusing. Armadillo has a Custom CSS section in Settings where you could target the headings if you know what they’re called. Something like:
.h1{
text-decoration: none;
}
would probably work.
Just using h1 as an example so you’s change that to whatever heading size the blog uses.
Rob
1 Like