skip to Main Content

How to to stop footer moving together with download button when mouse hovers on it – Artificial Intelligence

I have this $(document).ready(function() { $(".download").mouseenter(function() { $(".download").css("margin-top", "32px"); $(".footer").css("margin-top", "18px;"); }); $(".download").mouseleave(function() { $(".download").css("margin-top", "30px"); $(".footer").css("margin-top", "20px;"); }); }); body { margin: 0px; padding: 0px; color: white; font-family: Verdana; background: black; } a { text-decoration: none; color: white; text-align:…

VIEW QUESTION
Back To Top
Search