Click to See Complete Forum and Search --> : [RESOLVED] How to remove underline from link


blogmad
05-02-2006, 12:35 PM
:confused: I guess this probably a bit of a newby question, so I beg your indulgence. I have a blog site that I need a CSS fix for. Basically I want to change the title to a link, so that it links back to the home page. Problem is, when I do this, it puts an underline under the Title, which doesn't look great. I know there must be an easy solution to this with CSS, but unfortunately I don't know a lot about CSS.
This is my Blog
http://irishlinks.blogspot.com/

appreciate your help on this
:o

Kevey
05-02-2006, 01:16 PM
Since you're using <h1> tags for your title you could do something like this in your CSS:

h1 a {text-decoration: none;}

Alternatively you could assign a different class for your title and then tweak it in your CSS in the same manner.

pcthug
05-02-2006, 06:26 PM
http://www.w3schools.com/css/css_pseudo_classes.asp

Bytes
05-03-2006, 12:16 AM
May have a look at this link:

http://www.webdeveloper.com/forum/showthread.php?t=105225

blogmad
05-04-2006, 08:56 AM
merci :)