Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1476719

    Hello,
    is there a way to underline all links, except for the menu?

    Best regards!

    #1476722
    #1476735

    Thanks, but I want the links to be underlined all the time and only change color on hover.

    #1476739

    Hi,
    What color and link to your page.

    Best regards,
    Mike

    #1476758

    Link: http://www.traumwandel.de

    Color? White maybe.
    Menu and button-links should not be underlined.

    Best regards

    #1476761

    Hi,

    #top #main a:where(:not(.wp-element-button,.avia-button)) {
        text-decoration: underline;
    }
    #top #main a:hover:where(:not(.wp-element-button,.avia-button)) {
        color: #fff;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1476763

    Thank you :) Hover doesn’t work on single post page though.

    #1476770

    Hi,
    Here (https://www.traumwandel.de/traumartikel/) it looks like you are using a plugin “blog-designer_pack” the above css works in the footer.
    Try adding this css:

    .bdp-post-categories a,.bdp-post-title a,a.wp-dark-mode-bg-image {
    	text-decoration: underline !important;
    }
    .bdp-post-categories a:hover,a.wp-dark-mode-bg-image:hover strong {
    	color: #fff
    }

    Best regards,
    Mike

    #1476840

    With this code the links in the menu are underlined as well, what I don’t want. Is there a solution?

    Best regards

    #1476852

    Hi,
    Try this instead:

    .bdp-post-categories a,.bdp-post-title a,.av_textblock_section a.wp-dark-mode-bg-image {
    	text-decoration: underline !important;
    }
    .bdp-post-categories a:hover,.av_textblock_section a.wp-dark-mode-bg-image:hover strong {
    	color: #fff
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1476882

    Awesome!
    Thank you very much :) Topic can be closed.

    Best regards

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