• Resolved Charlotte x

    (@charlotte-x)


    This is my first time posting here so hope I’m doing it right!

    Anyway my problem is that I can’t get links in my sidebar to not be underlined. I’ve used text-decoration: none throughout the css and no other links are underlined – my nav bar, posts, footer etc are all fine! I just can’t seem to get rid of it from the sidebar! I tried using firebug but either used it incorrectly or couldn’t see anything else I need to change. I tried adding !important… I’m sure it’s something simple but I’m just stuck

    Anyway here is the link – http://www.winegumsandwatermelons.com/

    Thank you! xxx

Viewing 5 replies - 1 through 5 (of 5 total)
  • Using Firebug’s search I see this:

    .shareaholic-cookie-consent .shareaholic-consent-message a {
        color: #43AACC;
        text-decoration: underline;
    }

    But I’m not seeing where that is actually being used.

    Another possible culprit might be styling applied by JavaScript to the page after the CSS has already been applied.

    Thread Starter Charlotte x

    (@charlotte-x)

    Thank you! the shareaholic is under each post but even those links aren’t underlined

    In the sidebar every link is underlined, even those from different plugins/widgets – would that still be the javascript?

    Thank you so much for replying

    You can remove the underline by making border-bottom:none or delete it

    style.css line 1378

    .sidebar a {
        border-bottom: 1px solid #DDDDDD;
        text-decoration: none !important;
    }
    Thread Starter Charlotte x

    (@charlotte-x)

    Amazing. Thank you!

    Completely forgot to look for border-bottom!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Can't get rid of underline from links?’ is closed to new replies.