HOW TO REMOVE UNDERLINES FROM LINKS TO BLOGGER
- Go to Blogger Dashboard --> Design --> Edit HTML
- Backup your Template before making any changes to your blog
- Now Expand Widget Templates
- Search the codes shown belowa:link {
text-decoration:underline;
}
a:visited {
text-decoration:underline;
}
a:hover {
text-decoration:underline;
}
}
a:visited {
text-decoration:underline;
}
a:hover {
text-decoration:underline;
}
- Now change it with the code shown below
a:link {
text-decoration:none;
}
a:visited {
text-decoration:none;
}
a:hover {
text-decoration:none;
}
text-decoration:none;
}
a:visited {
text-decoration:none;
}
a:hover {
text-decoration:none;
}
- Now save your template
Post a Comment