kate_sheridan Posted December 6, 2023 Posted December 6, 2023 hello, I am launching my website ASAP but there are just 2 problems I am facing I can't solve. header navigation is not on one line, it keeps going into 2 lines. I tried a code that fixed this but removed it because it then made the mobile header not centered. If you can help please help me! 🙂 I created the website on my huge display screen and it looks good. However, when I open it on my smaller screen (standard laptop) the aspect ratio looks too 'zoomed' in. For example, when the page is on 100% zoom it looks bad but when it is 90% zoom it is perfect - please help!!!!! 🙂 Thanks, Kate
kate_sheridan Posted December 6, 2023 Author Posted December 6, 2023 website is https://katesheridanstyle.squarespace.com/config/ please reach out for password if you can fix
Ziggy Posted December 6, 2023 Posted December 6, 2023 Could you share the password? I'm sure the header navigation is adjustable, but not sure how without looking at it. Not sure what you want on the laptop screen but with some specifics I can probably help. 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?
kate_sheridan Posted December 7, 2023 Author Posted December 7, 2023 (edited) hello @Ziggythanks a lot! I just messaged you the password privately I want it to look like the right proportions on any desktop/ipad/iphone but I think I figured it out yesterday with a bit of change. let me know if you do have any advice though! Edited December 7, 2023 by kate_sheridan
kate_sheridan Posted December 7, 2023 Author Posted December 7, 2023 @Ziggy oh and I also don't like the footer on mobile display, do you have any tips on how to make it look better instead of all the page links going on to 2 rows? thank you sooo much! 🙂
Ziggy Posted December 7, 2023 Posted December 7, 2023 Okay, let's start by adding this Custom CSS to change the proportions of the header elements: // Header element proportions .header-layout-branding-center-nav-center .header-actions--left { flex: 0 1 15%; max-width: 15%; } .header-layout-branding-center-nav-center .header-actions--right { flex: 0 1 15%; max-width: 15%; } .header-layout-branding-center-nav-center .header-title-nav-wrapper { flex: 0 0 70%; } 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?
kate_sheridan Posted December 7, 2023 Author Posted December 7, 2023 hi @Ziggy Thanks, I added it! But it doesn't seem to have worked unfortunately
Ziggy Posted December 7, 2023 Posted December 7, 2023 It appears to be working great when I look at your website, even when I emulate a very small desktop screen: kate_sheridan 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?
kate_sheridan Posted December 7, 2023 Author Posted December 7, 2023 @Ziggy ohh I just had a look and it is working, thank you so much! 🙂 The mobile header seems off-centre now, do you know how I can correct that? thank you! Ziggy 1
Solution Ziggy Posted December 7, 2023 Solution Posted December 7, 2023 That code should only be targeting the desktop header elements, but we can make sure by adding a media query. Replace the previous CSS with this: // Header element proportions @media only screen and (min-width:768px) { .header-layout-branding-center-nav-center .header-actions--left { flex: 0 1 15%; max-width: 15%; } .header-layout-branding-center-nav-center .header-actions--right { flex: 0 1 15%; max-width: 15%; } .header-layout-branding-center-nav-center .header-title-nav-wrapper { flex: 0 0 70%; } } kate_sheridan 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?
Ziggy Posted December 7, 2023 Posted December 7, 2023 You may want to reassess the footer layout since the newsletter block on tablet is causing an overflow, it needs more columns: kate_sheridan 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?
kate_sheridan Posted December 7, 2023 Author Posted December 7, 2023 @Ziggy thank you soo much! 🙂 I will have a look at that!
kate_sheridan Posted December 7, 2023 Author Posted December 7, 2023 @Ziggy please can you check if the change I made work? thank you!!! Ziggy 1
Ziggy Posted December 7, 2023 Posted December 7, 2023 6 minutes ago, kate_sheridan said: please can you check if the change I made work? thank you!!! That works much better, nice one! kate_sheridan 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?
Ziggy Posted December 7, 2023 Posted December 7, 2023 Thanks for marking my post as the solution and giving it a like! Much appreciated! kate_sheridan 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?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment