Monday, July 22, 2013

How To Remove Underlines From Text Links In Blogger?

Author: Gagan Masoun
Remove Underlines From Text Links In Blogger
According to my experience blogger is not a perfect blogging platform for fresher bloggers because of many default boring templates and other boring things. But if you have a little bit knowledge of CSS and HTML then its good to use Blogspot platform for blogging purpose. Recently, one of our readers asked us how he can remove underlines from text links in Blogger. In this short guide, we will show you how to remove underlines from your text links in blogger with the help of little tricks.

Remove Underlines From Links

a {
color: #0000FF;
text-decoration: underline;
}
Remember - You will find this code little bit different in some blog templates because of different coding of each blogger template. If you are getting any problem then leave your Bog URL in the comment box below.
  • Now, Replace text-decoration: underline; With Below Code
text-decoration: none;
  • It Will Look Like This. 
a {
color: #0000FF;
text-decoration: none;
}
After replace the code save your blogger template and it's all done. Visit your blog and enjoy blogging. God Bless You :)

0 comments:

Post a Comment