TFWC Posted December 5, 2022 Posted December 5, 2022 I want the footer to be visible on the homepage, but just for the mobile version, not the desktop version. https://www.twinforkswindow.com/ https://www.twinforkswindow.com/mobile
Ziggy Posted December 6, 2022 Posted December 6, 2022 I'm not sure I can see exactly what you want to do via your website, but in general you can use CSS to hide your footer within a media query so that it only hides on desktop, something like this: @media only screen and (min-width:768px) { #footer-sections { display:none; } } You can also add a page collection ID if just wanting to target one page, or add this to the page header code injection on one page within <style></style> tags. Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 📈 SEO Space (Referral link) Ⓜ️ Will Myers' Plugins & Tutorials (Referral link) 🔌 Ghost Squarespace Plugins (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️Pinch-to-Zoom Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee?
TFWC Posted December 6, 2022 Author Posted December 6, 2022 Just entered the code in CSS and this hides the footer for all the pages on my desktop website. I want the footer to show on every page for both desktop and mobile, except the home page on desktop. So I want to see the footer on every mobile page and every desktop page except the desktop home screen.
Ziggy Posted December 7, 2022 Posted December 7, 2022 23 hours ago, Ziggy said: You can also add a page collection ID if just wanting to target one page Using the homepage collection ID: @media only screen and (min-width:768px) { #collection-62486703ea77215859f5b84e { #footer-sections { display:none; } } } Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 📈 SEO Space (Referral link) Ⓜ️ Will Myers' Plugins & Tutorials (Referral link) 🔌 Ghost Squarespace Plugins (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️Pinch-to-Zoom Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment