Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1336764

    I am not good at CSS and I can’t figure this out.
    In the general styling section of the Enfold settings, it shows all the links as underlined. However, on the live site, they are not.
    I would like to have the links in the main body and footer of the pages to be underlined. How can I do this? (I don’t want the menu items underlined).

    #1336773

    Hey prerules,
    Thank you for your question, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #main a, #footer a {
        text-decoration: underline;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1336775

    Thanks!
    That works great. However, it also underlines buttons. Is there a way so that it is only in text?

    #1336778

    Hi,
    Please try this instead:

    #main a:not(.avia-button), #footer a:not(.avia-button) {
        text-decoration: underline;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1336779

    Perfect!
    Thank you so much!

    #1336785

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘underline links’ is closed to new replies.