how to make your links tweak (jump) in blogger.
Its same like making images tweak. Just editing a hover code and we are done. First, go to your Edit HTML section of your Layout and search for the following code:
a:hover {
text-decoration:underline;
}
Now replace the code with the code given below:
a:hover {
position: relative;
bottom: 5px;
left: 1px;
color:#000000;
}
Now save the template and look at your page, the links tweaked man.
You can change the color of your link to your desired color when it tweaks. Also you can set your own parameters for your tweaking image by editing top and left pixels.
If you got any problems the just leave the comment and i will catch you.
Its same like making images tweak. Just editing a hover code and we are done. First, go to your Edit HTML section of your Layout and search for the following code:
a:hover {
text-decoration:underline;
}
Now replace the code with the code given below:
a:hover {
position: relative;
bottom: 5px;
left: 1px;
color:#000000;
}
Now save the template and look at your page, the links tweaked man.
You can change the color of your link to your desired color when it tweaks. Also you can set your own parameters for your tweaking image by editing top and left pixels.
If you got any problems the just leave the comment and i will catch you.