Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #1366507

    After I switched to the child theme, my links are no longer underlined. What’s the CSS code to underline the links in my pages, posts and footer?

    #1366576

    Hey Samuel,

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    #top #wrap_all a {
      text-decoration: underline;
    }
    

    Best regards,
    Yigit

    #1366625

    It works but now my navigation links are underlined too. Can I have my navigation links not to be underlined? It looks strange. Thanks.

    #1366641

    Hi,

    My bad. Please use following code instead of the one I posted earlier

    
    #top #main a {
      text-decoration: underline;
    }
    

    Best regards,
    Yigit

    #1366688

    It works, thanks! One last thing about my links.

    How do I change the color of the link and the color of the hoover link?

    #1366829

    Hi Samuel,

    Go to Enfold > General Styling > Main Content (tab) then set Primary Color for link color and Highlight Color for hover link color.
    Let us know if this helps.

    Best regards,
    Nikko

    #1366958

    It didn’t work. All the bolded words became the same as the link colors.

    #1367008

    Hi Samuel,

    I see, please change this code Yigit gave:

    #top #main a {
      text-decoration: underline;
    }

    to:

    #top #main a {
      color: blue;
      text-decoration: underline;
    }
    
    #top #main a:hover {
      color: blue;
    }

    Just change the color values.

    Best regards,
    Nikko

    #1367147

    It works. Now the footer socket links are the same color but I need them to be in different colors. Can I have the code for the footer socket too? Thanks.

    #1367168

    Hi Samuel,

    I’m glad to hear that, for the footer socket, please add this CSS code (just change the color value):

    #top #socket a {
        color: red;
    }

    Best regards,
    Nikko

    #1367174

    I also need the hoover link for the footer socket. Thanks.

    #1367192

    Hi,

    Please try this CSS as well:

    #top #socket a:hover {
        color: green;
    }

    Best regards,
    Rikard

    #1367380
    
    #top #socket a {color: #FFFFFF; text-decoration: none}
    

    This line doesn’t work. The link is still underlined. The rest of the code works.

    #1367391

    Hi Samuel,

    Please use following code instead

    
    #top #main #socket a {
      text-decoration: none;
      color: #ffffff;
    }
    

    Best regards,
    Yigit

    #1367488

    It works, thanks! You guys are so helpful.

    #1367492

    Hi Samuel,

    We’re glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Underline Links’ is closed to new replies.