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!