Removing underlines
-
Hi to all
I am using custom design, and i am looking for a way to remove all the underlines under my title posts, tags, categories etc. I am novice on css so please any answer must include the full code if its possible so i can paste it on my css page.
Thanks in advance
The blog I need help with is: (visible only to logged in users)
-
Hi Dteseris,
The basic code for removing underlines is text-decoration: none.
In the CSS, it would look like this:
a { text-decoration: none; }But you may have to do this for other items (like headers or meta information) hat are more specific. Sometimes, if you really want it for all links, a bit of a workaround for this is adding the !important tag, which can take precedence.
a { text-decoration: none !important; }Let me know if that works!
- The topic ‘Removing underlines’ is closed to new replies.