Easy Ways to Make Shaded Effects on labels

To make it enter on Design - Edit HTML and find the code </head> and place the following jquery on it :
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ></script>
but if your template already has a jquery code with the model above, you don't need to add the code above.
then add the code below and place it below code jquery above that
If you are not sure, please review first, but if you are really sure, then go to the Save template.
Tested : of www.templatesboy.com (100% Work)
Good luck, good luck
<script type='text/javascript'>
$(document).ready(function() {
$('#Label1 li').hover(function() { //mouse in
$(this).animate({ marginLeft: '12px' }, 400);
}, function() { //mouse out
$(this).animate({ marginLeft: 0 }, 400);
});
});
</script>
If you are not sure, please review first, but if you are really sure, then go to the Save template.
Tested : of www.templatesboy.com (100% Work)
Good luck, good luck
Comments
Post a Comment