How To Remove Underline below Text Links

Posted by Lasantha Bandara on June 21st, 2009 File Under : change template, html0 Comment

1.Log in to your blogger dashboard--> layout- -> Edit HTML

2.Scroll down to where you see like this code:

a:link {
color:$linkcolor;
text-decoration:none;
}
a:visited {
color:$visitedlinkcolor;
text-decoration:none;
}
a:hover {
color:$titlecolor;
text-decoration:underline;

3.Now replace above code with below code.

a:link {
color:$linkcolor;
text-decoration:none;
}
a:visited {
color:$visitedlinkcolor;
text-decoration:none;
}
a:hover {
color:$titlecolor;
text-decoration:none;

4.Now save your template and you are done.

File Under : change template, html

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.