• Resolved Tammy

    (@tammy4u2)


    My links are being underlined. I added a css
    a{
    text-decoration: none;
    }

    It did not effect it. Typically a theme comes with this as “none” set for the default.
    How can I remove underline?
    Thanks!

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Probably if you make your style declaration a bit more specific, like say:

    h3.fl-callout-title span a {text-decoration: none} that will beat whatever other style declarations are in play for links.

    Or, if that doesn’t work and you’re really desparate and don’t want to comb through the style sheets or pore over the firebug output you can add the !important declaration as in

    h3.fl-callout-title span a {text-decoration: none !important}

    …but this marks you as a newbie. So use sparingly and preferably where no one will notice 😉

    cmkl

    Thread Starter Tammy

    (@tammy4u2)

    Thanks CMKL! that worked. I guess I have to be specific with each link that is being underlined. That’s just weird that their is no default or site wide style for that. I’ve used this theme before and not encountered that. Thanks, again.

    Look for a rule that’s a bit specific, but not as specific as the one you just wrote — like may be body a {} or article a {} div.content a {} or something like that.

    Are you using Firebug or some similar see-what-styles-are-in-effect plugin?

    cmkl

    Thread Starter Tammy

    (@tammy4u2)

    I added “!important” to “a” tag and it worked sitewide.

    Thread Starter Tammy

    (@tammy4u2)

    Thanks for your assistance!

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

The topic ‘Links are underlined’ is closed to new replies.