Shop Gold Dostosowanie Sklepu z poziomu zaplecza sklepu
Zmiana menu górnych, przyglejenie ich do top strony: <script> window.onscroll = function() {myFunction()}; var header = document.getElementById(„SzukanieKoszyk”); var header2 = document.getElementById(„GorneMenu”); var sticky = header.offsetTop; function myFunction() { if (window.pageYOffset > sticky) { header.classList.add(„sticky”); header2.classList.add(„sticky2”); } else { header.classList.remove(„sticky”); header2.classList.remove(„sticky2”); } } </script> <style> @media (min-width: 1000px){ .sticky { position: fixed; top: -1px !important;…
