Hi, I have found some of the ways here in the forum to add underlined text and then remove them from the sidebar and navbar. eg
body .entry-content a:not(.x-btn) {
text-decoration: underline !important;
}
body .x-navbar a {
text-decoration: none !important;
}
body .x-colophon a {
text-decoration: none !important;
}
But how would I remove the underline from Headings, like h1, h2, h3 and also from accordian headings and the body text within an accordian?
I had thought this would work for headings but it did not make a difference:
.x-accordion-heading a {
text-decoration: none !important;
}
Any help would be appreciated.