I published couple of cool tutorial and tricks for customizing your blogs post area elements before; here to mention some notable using Google font in post, customized blockquote, syntax highlighter, setting up 404 error page, Flickr images gallery, Remove default border and shadow from images, embedding vimeo videos etc. Here to the next stage of Blogger post customization I presenting to you here animated underline links. By applying this tutorial in post all links will show different way; animated underline will appear on mouse hover on links. This trick made with CSS3 animation and it’s easy to set up. Let’s see how it works and how to add it on your Blogger blog.
Add animated underline links of your Blogger blog
Live Demo: (click here)
Codes for Copy:
<style>/*crawlist.net CSS starts*/
.post-body a, a:visited {
text-decoration: none;
position: relative;
color: #3498DB;
}
.post-body a:after, a:visited:after {
content: '';
height: 2px;
position: absolute;
…
Add animated underline links of your Blogger blog
Live Demo: (click here)
Codes for Copy:
<style>/*crawlist.net CSS starts*/
.post-body a, a:visited {
text-decoration: none;
position: relative;
color: #3498DB;
}
.post-body a:after, a:visited:after {
content: '';
height: 2px;
position: absolute;
…