Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #696551

    How do you set hyperlinks in page content (not header, not footer) to display an underline?

    This CSS code didn’t work:
    avia_textblock a {
    text-decoration: underline;
    }

    .entry-content a {
    text-decoration: underline;
    }

    #696558

    Hi m!

    Please try changing your code to following one

    .entry-content a {
    text-decoration: underline !important;
    }

    Cheers!
    Yigit

    #697991

    That didn’t work.

    #698053

    Hey!

    There is not such sentence on the page you posted. Could you please check the link once again? :)

    Best regards,
    Yigit

    #698068

    Sorry, try this link:

    #698070

    Hi!

    That is because your text is inside a heading element. However you can add following code to Quick CSS to have it underlined

    .iconbox_content_container a {
        text-decoration: underline!important;
    }

    Cheers!
    Yigit

    #698076

    Perfect, thank you very much!!!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Showing underline on page content hyperlinks’ is closed to new replies.