• Hello !
    I have issues with underlines on text links when hovering.

    I have tried things like

    .entry-title a:hover {
    	text-decoration: none !important;
    }

    But it doesn’t work. The funny thing is when I use this code:

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

    It adds another underline on text when hovering so i end up with 2 lines under text. So I suspect that underlines on this theme are generated from Javascript.

    Is there a way to overcome this problem ?

    Thank you in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi! This theme is unique in that it uses short gradient background-image gradients for underlining text. If you want to reset that, use this:

    .entry-content a,
    .entry-footer .author-bio a,
    .page-content a,
    .taxonomy-description a,
    .logged-in-as a,
    .comment-content a,
    .pingback .comment-body > a,
    .textwidget a,
    .aboutme_widget a,
    .widget_gravatar a,
    .widget-grofile a,
    .image-navigation a:hover,
    .comment-navigation a:hover,
    .post-navigation a:hover .post-title,
    .entry-date a:hover,
    .entry-footer a:hover,
    .site-title a:hover,
    .entry-title a:hover,
    .comment-author a:hover,
    .comment-metadata a:hover,
    .pingback .edit-link a:hover,
    .site-info a:hover,
    #infinite-footer .blog-credits a:hover {
    	background-image: none;
    }

    I hope that helps!

    Thread Starter aynos

    (@aynos)

    Thank you a lot @supernovia !!!!
    I’ll try it later and I will tell you if it works 🙂

    Thread Starter aynos

    (@aynos)

    Thank you very much @supernovia !
    it works like a charm !!!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘remove underlines on links when hovering’ is closed to new replies.