FTWSGEM Posted April 3, 2023 Posted April 3, 2023 I have created a custom hamburger and forced that menu on desktop too which so far works as I would like, however, the actual icon is sitting too far down the site. I would ideally like it to be in line with the logo but it doesn't show a block ID or section ID when using the SS ID finder. Anyone have any ideas how I can get it to line up?
Ziggy Posted April 4, 2023 Posted April 4, 2023 Can you share your website URL? Thanks! 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?
FTWSGEM Posted April 4, 2023 Author Posted April 4, 2023 @Ziggy sorry, I thought it was included. https://maroon-daffodil-yrle.squarespace.com/
Ziggy Posted April 4, 2023 Posted April 4, 2023 Can you set and share a site wide password too? Thanks! https://support.squarespace.com/hc/en-us/articles/205815528-Site-wide-passwords 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?
FTWSGEM Posted April 4, 2023 Author Posted April 4, 2023 @Ziggy I have changed the URL: https://ftws-progress.squarespace.com/ password: happy123 Thank you
Ziggy Posted April 4, 2023 Posted April 4, 2023 Try this Custom CSS: .burger-box { width: 120px; height: 120px; } The width may well override the 100px width property you already have, but I think the 120px works better. Let me know if that works for you! FTWSGEM 1 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?
FTWSGEM Posted April 6, 2023 Author Posted April 6, 2023 @Ziggy that worked amazing but I have since noticed when clicking on the hamburger icon that my menu is non-existent and I have a scroll bar built into the slide in menu section. Would you happen to know why?
Ziggy Posted April 6, 2023 Posted April 6, 2023 No, I'm not sure, the width seems to be set to 40%, which might be the problem. @media screen and (min-width: 768px) { .header-menu { width: 100%; } } 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?
FTWSGEM Posted April 6, 2023 Author Posted April 6, 2023 @Ziggy changing to 100% didn't help either. It still doesn't show the navigation links and has the scroll bar still to the right.
Ziggy Posted April 6, 2023 Posted April 6, 2023 What code did you use to achieve the mobile menu on desktop? 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?
FTWSGEM Posted April 6, 2023 Author Posted April 6, 2023 24 minutes ago, Ziggy said: What code did you use to achieve the mobile menu on desktop? /* Force burger on desktop */ .header-burger { display: flex !important } .header--menu-open .header-menu { opacity: 1 !important; visibility: visible !important } .header-nav,.header-actions { visibility: hidden !important } @media screen and (min-width:768px) { .header-menu { right:unset; width: 100%; } } // CUSTOM HAMBURGER /* Non-active burger */ .burger-inner:after { content: ""; background-image: url(https://static1.squarespace.com/static/64274acdbbbb8e1c6b6d2120/t/642ab7fb3cda6b0a2c49f422/1680521211290/%2C%2C.png); background-size: 120px; background-repeat: no-repeat; background-position: right; background-color: transparent !important; display: block; width: 140px; height: 120px; } .burger-inner>div { display: none !important; } /* Burger when active */ body.header--menu-open .burger-inner:after { background-image: url(https://static1.squarespace.com/static/64274acdbbbb8e1c6b6d2120/t/642ab7fb3cda6b0a2c49f422/1680521211290/%2C%2C.png) !important; } .burger-box { width: 120px; height: 120px; } @media only screen and (min-width:768px) { .header .header-announcement-bar-wrapper { padding-left:2vw; } .header .header-burger { width:10vw; } }
Ziggy Posted April 6, 2023 Posted April 6, 2023 Can you re-share the password? 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?
Ziggy Posted April 6, 2023 Posted April 6, 2023 Password no longer works, which is why I was asking for it again, can you check it and reshare the password? Thanks. 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?
FTWSGEM Posted April 6, 2023 Author Posted April 6, 2023 @Ziggy I have just reset it again to happy123. It should work. If it doesn't let me know and I will change it to something else. Gemma
Ziggy Posted April 6, 2023 Posted April 6, 2023 Thanks. I can't see any navigation links on the page or in the code, how many do you have in the pages menu? 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?
FTWSGEM Posted April 6, 2023 Author Posted April 6, 2023 @Ziggy 5 Including the homepage and blog, they did use to show up but I'm not sure what happened.
Ziggy Posted April 6, 2023 Posted April 6, 2023 Sorry to confirm, but the links are definitely in the Main Navigation section in the Pages menu? 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?
FTWSGEM Posted April 6, 2023 Author Posted April 6, 2023 26 minutes ago, Ziggy said: Sorry to confirm, but the links are definitely in the Main Navigation section in the Pages menu? @Ziggy - Nope. I am an absolute muppet, so sorry! They were in the not linked section! Ziggy 1
FTWSGEM Posted April 6, 2023 Author Posted April 6, 2023 Though, I do still seem to have that scroll bar on the far right which I can't seem to get rid of.
Ziggy Posted April 6, 2023 Posted April 6, 2023 1 hour ago, FTWSGEM said: Though, I do still seem to have that scroll bar on the far right which I can't seem to get rid of. You can try adding this Custom CSS: .header-menu-bg { overflow: hidden; } 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?
FTWSGEM Posted April 6, 2023 Author Posted April 6, 2023 @Ziggy doesn't seem to have made a difference
Ziggy Posted April 7, 2023 Posted April 7, 2023 Maybe with this: .header-menu-bg { overflow: hidden !important; } tuanphan 1 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?
FTWSGEM Posted April 11, 2023 Author Posted April 11, 2023 On 4/7/2023 at 10:22 AM, Ziggy said: Maybe with this: .header-menu-bg { overflow: hidden !important; } No, this still doesn't work 😞
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment