ampddesigns Posted June 22, 2021 Share Posted June 22, 2021 Site URL: https://circle-triceratops-tem9.squarespace.com/home Hello! Seeing tons of solutions to shrink the logo on scroll, but what about the site title? Futzing around with it and can't seem to make it work. Any help would be much appreciated! Just a test site: https://circle-triceratops-tem9.squarespace.com/home password: view Link to comment
sorca_marian Posted June 22, 2021 Share Posted June 22, 2021 Hello! Add the below code in Settings -> Advanced -> Code Injection > FOOTER <script> window.addEventListener("scroll", function() { var siteTitle = document.querySelector("#site-title"); if(window.pageYOffset >= 30) { siteTitle.className = "smaller-font"; } else { siteTitle.className = ""; } }); </script> And the below code in Design -> Custom CSS #site-title.smaller-font { font-size : 23px; } ampddesigns 1 Contact me for development work - I’m a Freelancer Software engineer and architect Squarespace Tutorials for free - YouTube📹 Manage Tasks & Notes Easily Squarespace Custom Web Development & Design 😀 Message me if you need custom features or a new website created Link to comment
ampddesigns Posted June 22, 2021 Author Share Posted June 22, 2021 2 hours ago, sorca_marian said: Hello! Add the below code in Settings -> Advanced -> Code Injection > FOOTER <script> window.addEventListener("scroll", function() { var siteTitle = document.querySelector("#site-title"); if(window.pageYOffset >= 30) { siteTitle.className = "smaller-font"; } else { siteTitle.className = ""; } }); </script> And the below code in Design -> Custom CSS #site-title.smaller-font { font-size : 23px; } Amazing, thank you so much! Link to comment
sorca_marian Posted June 22, 2021 Share Posted June 22, 2021 😀 Contact me for development work - I’m a Freelancer Software engineer and architect Squarespace Tutorials for free - YouTube📹 Manage Tasks & Notes Easily Squarespace Custom Web Development & Design 😀 Message me if you need custom features or a new website created Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment