Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1244608

    Trying to remove the underlines from hyperlink in bulleted list
    set Custom Css Class: bullet-no-link on the text box for the list (the text box is inside of a color box and a column box)
    Added the following code to the quick CSS box:

    .bullet-no-link {
    text-decoration:none!important;
    }

    #1244748

    Hey mnydish,

    Add this to quick css:

    li a{
    text-decoration:none!important;
    }

    Best regards,
    Jordan Shannon

    #1244866

    Perfect… thank you

    #1244869

    Also how would I add a hover color to this text?

    #1244887

    Hi mnydish,

    Please try adding this CSS code:

    li a:hover {
      color: green;
    }

    Best regards,
    Nikko

    #1244892

    Hi Nikko
    That is not showing up, any ideas?
    Thanks

    #1244961

    Hi mnydish,

    Try adding !important, so the code I gave should look like this:

    li a:hover {
      color: green !important;
    }

    If that still doesn’t work please flush out the cache from any caching or optimization plugin and also the browser cache.

    Best regards,
    Nikko

    #1244966

    that did the rick thank you!

    #1245055

    Hi mnydish,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Remove underline from hyperlink in bulleted list’ is closed to new replies.