Edit file File name : custom.js Content :$(document).ready(function () { window.onscroll = function () { scrollFunction() }; function scrollFunction() { if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) { document.getElementById("logo").style.width = "90px"; document.getElementById("header2").style.height = "100px"; } else { document.getElementById("logo").style.width = "150px"; document.getElementById("header2").style.height = "130px"; } } });Save