• Resolved eschberlin

    (@eschberlin)


    Hello and have a good day!

    When you visit the homepage, the navigation is at the top in the header area. It works as it should: the link is underlined on mouseover. In the footer area, this function is simply reversed. With mousover, the underline disappears.

    I hope someone can help me! Thank you very much!
    Hans Jürgen from Berlin

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Please go to Appearance>Customize->Additional CSS then paste that code

    .wp-elements-3fe85dcdd726a1529ce53af4994505ea a{
        text-decoration: none;
    }
    
    .wp-elements-3fe85dcdd726a1529ce53af4994505ea a:hover{
        text-decoration: underline;
    }

    If not work then paste that code please

    .wp-elements-3fe85dcdd726a1529ce53af4994505ea a{
        text-decoration: none;
    }
    
    .wp-elements-3fe85dcdd726a1529ce53af4994505ea a:hover{
        text-decoration: underline !important;
    }
    Thread Starter eschberlin

    (@eschberlin)

    Very dear thanks!
    That worked perfect!
    Is it possible to generalize this function so that it works for all links on this site?

    Please implement that code

    a{
      text-decoration: none;
    }
    
    a:hover{
      text-decoration: underline;
    }

    If not work first one then try that one please

    a{
      text-decoration: none;
    }
    
    a:hover{
      text-decoration: underline !important;
    }
    Thread Starter eschberlin

    (@eschberlin)

    It works, thank you so much! Hans-Jürgen

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Links, once underlined, once not underlined’ is closed to new replies.