Removing the underline from the "more…" link?
-
My front page is arrange to display just the intro from other pages in my website.
It’s the standard set up we’re all familiar with, with a sentence or two, then “more…”, like on many blogs you see.
…So I’m using CSS to style the “more…” link, and I can do EVERYTHING to it with CSS except remove the underline. How can I remove that underline?
Apparently I’m targeting the right element: I can change the background color, I can add a border, etc. using CSS…. but when I add “text-decoration: none;” that doesn’t work!
I’ve tried:
a{ text-decoration: none; } a:link{ text-decoration: none; } .more-link{ text-decoration: none; } body a{ text-decoration:none; }
…as well as other combination of the classes and tags containing the “a” plus “a” and even the classes alone.
I’m astounded that I can change everything else about the link but I can’t remove the underline.
Any ideas? Please help. Thank you.
- The topic ‘Removing the underline from the "more…" link?’ is closed to new replies.