Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #97569
    Hösli
    Participant

    Hi Mahesh

    I would like to have my links underscored <u>Link</u> in the normal state. While when hovering over it, that underscore is not showing but Link changes the color.
    Changing Link color can be adjusted. But the underscoring issue I need your support.

    my homepage ist http://www.stefanhoesli.com

    Thank you and best regards
    Stefan

    #97603
    Pratik
    Keymaster

    hi @stefanhoesli,
    I checked your site and there is inderline on links on hover. Can you check the links in footer like “Let Go”, “Kontaktformular”, “Anfahrtsplan”, etc, they have underline on hover.

    If you want underline on titles like “Strategieentwicklung” too, then add following code in “Appearance=> Customize=> Theme Options=> Custom CSS” box:

    
    .entry-title a:hover, .entry-meta a:hover {
        text-decoration: underline;
    }
    

    Also, there is some error in you custom css, near last line, instead of closing } you have added {. Please make the changes.

    Regards,
    Pratik

    #97712
    Hösli
    Participant

    Hi Pratik
    Thanks for your answer.
    I did not write clear enough I suppose.

    For displaying a link, in the normal state (not at hovering) I like to have same color as the text, but the decoration of the link shall be “underline”, as soon as this link is hovered, text color shall change to link color.

    And thank you for you hint to correct the CSS file with the closing bracket }

    Best regards from Switzerland
    Stefan

    #97764
    Pratik
    Keymaster

    Before I provide you the solution, are you talking about the links in footer?

    #97800
    Hösli
    Participant

    I talk about all the Links on the webpage.

    #97844
    Pratik
    Keymaster

    Try following:

    
    a:hover {
        text-decoration: underline !important;
    }
    

    Currently, the colors are same as text in your site.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Link decoration: underscore’ is closed to new replies.