Link Nudging

PHOTO EMBED

Tue Jun 23 2020 09:37:32 GMT+0000 (Coordinated Universal Time)

Saved by @Amna #jquery

$("a").hover(function() {
       $(this).stop().animate({paddingLeft : "10px"},200);
},function() {
       $(this).stop().animate({paddingLeft : "0px"},200);
});
content_copyCOPY

Make sure to change the selector to only target the links you want to have nudging, e.g. “#sidebar ul li a”

https://css-tricks.com/snippets/jquery/link-nudging/