Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #313325

    ohmstudio
    Participant

    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.

    #313418

    Prasant Rai
    Moderator

    Hello There,

    Thanks for writing in!

    To do that kindly use following CSS under Custom > CSS in the Customizer:

    .x-accordion-group {
        border: none !important;
    }
    
    .x-accordion-inner {
      border: none !important;
    }

    Let us know how it goes.

    Thanks.