Tutorial Link Nudging
$("a").hover(function() { $(this).stop().animate({paddingLeft : "10px"},200); },function() { $(this).stop(...
https://iskablogs.blogspot.com/2014/03/tutorial-link-nudging.html
$("a").hover(function() {
$(this).stop().animate({paddingLeft : "10px"},200);
},function() {
$(this).stop().animate({paddingLeft : "0px"},200);
});
Make sure to change the selector to only target the links you want to have nudging, e.g. "#sidebar ul li a"
$(this).stop().animate({paddingLeft : "10px"},200);
},function() {
$(this).stop().animate({paddingLeft : "0px"},200);
});
Make sure to change the selector to only target the links you want to have nudging, e.g. "#sidebar ul li a"