sabinestage Posted April 28, 2020 Share Posted April 28, 2020 Hi! Is there a way of adjusting the mobile breakpoint in version 7.1? The navigation of my website and also some text looks weird on an iPad landscape view and I would like to change it so the navigation changes to a hamburger icon and the text moves on top of pictures. Happy about any suggestions! Thank you! Sabine Link to comment
tuanphan Posted April 29, 2020 Share Posted April 29, 2020 Can you share link to page in screenshot? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
sabinestage Posted April 29, 2020 Author Share Posted April 29, 2020 www.osteopatsabinestage.se Link to comment
tuanphan Posted April 30, 2020 Share Posted April 30, 2020 18 hours ago, sabinestage said: www.osteopatsabinestage.se Add to Home > design > custom CSS @media screen and (min-width:768px) { /* hide navigation */ .header-nav { display: none; } /* Hide header button */ .header-actions { display: none; } /* show burger */ .header-burger { display: flex; } /* Show overlay mobile menu */ .header--menu-open .header-menu { opacity: 1; visibility: visible; } } Soren_90 and usingmyhead 2 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
sabinestage Posted May 2, 2020 Author Share Posted May 2, 2020 Thank you @tuanphan! Appreciate it! I added the CSS Code to my website. Now, the navigation is only with a burger icon even on my MacBook. Can that be adjusted just to iPad size? Best Sabine Link to comment
sabinestage Posted May 2, 2020 Author Share Posted May 2, 2020 I mean, some of the font (headers) are still not right. I would like them to move on top of the text as they do in the mobile version. It is about changing the breaking point for the mobile version I guess. Thank you! Link to comment
tuanphan Posted May 5, 2020 Share Posted May 5, 2020 On 5/3/2020 at 12:44 AM, sabinestage said: Thank you @tuanphan! Appreciate it! I added the CSS Code to my website. Now, the navigation is only with a burger icon even on my MacBook. Can that be adjusted just to iPad size? Best Sabine On 5/3/2020 at 12:49 AM, sabinestage said: I mean, some of the font (headers) are still not right. I would like them to move on top of the text as they do in the mobile version. It is about changing the breaking point for the mobile version I guess. Thank you! Have you solved yet? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
seannygorman Posted May 25, 2020 Share Posted May 25, 2020 Hey! I was also having trouble with this – you just need to change 'min-width' to 'max-width' I think So – on the website I was designing, the nav links kept going to multiple lines, and I wanted it to just snap to the hamburger/mobile mode earlier I couldn't get the code provided here to work, until I realised you need to change it to max-width. On my site, I needed it to switch to mobile mode once it hit 1240px Quote @media screen and (max-width:1240px) { /* hide navigation */ .header-nav { display: none; } /* Hide header button */ .header-actions { display: none; } /* show burger */ .header-burger { display: flex; } /* Show overlay mobile menu */ .header--menu-open .header-menu { opacity: 1; visibility: visible; } } Hope this helps! Link to comment
BlindBetty Posted August 4, 2020 Share Posted August 4, 2020 Thanks @seannygorman — worked perfectly for me. Link to comment
alexscasny Posted September 22, 2020 Share Posted September 22, 2020 On 4/30/2020 at 2:24 PM, tuanphan said: Add to Home > design > custom CSS @media screen and (min-width:768px) { /* hide navigation */ .header-nav { display: none; } /* Hide header button */ .header-actions { display: none; } /* show burger */ .header-burger { display: flex; } /* Show overlay mobile menu */ .header--menu-open .header-menu { opacity: 1; visibility: visible; } } Hi there, thanks for the code. That's great. Is there a way to force the burger menu to be right aligned? It somehow appears on the left. Many thanks Link to comment
tuanphan Posted September 22, 2020 Share Posted September 22, 2020 12 hours ago, alexscasny said: Hi there, thanks for the code. That's great. Is there a way to force the burger menu to be right aligned? It somehow appears on the left. Many thanks Can you share site url? We can check easier. Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
alexscasny Posted September 27, 2020 Share Posted September 27, 2020 On 9/23/2020 at 12:28 AM, tuanphan said: Can you share site url? We can check easier. https://www.delicario.com/home Removed the code already but would be helpful anyway Link to comment
lilly1 Posted October 20, 2020 Share Posted October 20, 2020 Hi everyone. I used the code below and it worked very well, thank you!! But now unfortunately the font colour has turned black, it was my site-wide turquoise colour for headings before. Does anybody know how to change the colour within this? Also, has anybody experienced problems with loading speed once the site has more visitors? On 4/30/2020 at 3:24 PM, tuanphan said: @media screen and (min-width:768px) { /* hide navigation */ .header-nav { display: none; } /* Hide header button */ .header-actions { display: none; } /* show burger */ .header-burger { display: flex; } /* Show overlay mobile menu */ .header--menu-open .header-menu { opacity: 1; visibility: visible; } } Link to comment
nzricky Posted March 31, 2021 Share Posted March 31, 2021 Site URL: https://drum-keyboard-blas.squarespace.com/ pass: weavelg worked perfectly thanks! However, On desktop the space between the navigation items is huge, I have to scroll to see them all, how do I adjust that? Thanks Link to comment
creedon Posted April 1, 2021 Share Posted April 1, 2021 (edited) 6 hours ago, nzricky said: On desktop the space between the navigation items is huge, Add the following to Design > Custom CSS. /* adjust burger menu spacing on desktop */ @media screen and ( min-width : 768px ) { .header-menu-nav-item a { margin : 2vw; } } This is for v7.1 and specific the the poster's need. Let us know how it goes. Edited April 1, 2021 by creedon nzricky 1 Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
tuanphan Posted April 5, 2021 Share Posted April 5, 2021 On 4/1/2021 at 4:58 AM, nzricky said: Site URL: https://drum-keyboard-blas.squarespace.com/ pass: weavelg worked perfectly thanks! However, On desktop the space between the navigation items is huge, I have to scroll to see them all, how do I adjust that? Thanks The url doesn't exist. Can you check it again? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
jaksdigital Posted December 3, 2021 Share Posted December 3, 2021 @tuanphan this worked perfectly for me thank you! tuanphan 1 Link to comment
thevelveteenstudio Posted December 22, 2021 Share Posted December 22, 2021 On 9/22/2020 at 7:09 AM, alexscasny said: Hi there, thanks for the code. That's great. Is there a way to force the burger menu to be right aligned? It somehow appears on the left. Many thanks How do I get it to float right? I'd like it to be 35% width, float right. Link to comment
tuanphan Posted December 25, 2021 Share Posted December 25, 2021 On 12/22/2021 at 8:57 PM, thevelveteenstudio said: How do I get it to float right? I'd like it to be 35% width, float right. Use this code @media screen and (min-width:768px) { .header-menu { width: 35%; left: unset; } } thevelveteenstudio 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
thevelveteenstudio Posted March 16, 2022 Share Posted March 16, 2022 On 12/25/2021 at 3:57 AM, tuanphan said: Use this code @media screen and (min-width:768px) { .header-menu { width: 35%; left: unset; } } Thank you SO much! Link to comment
GraemeWalker Posted March 23, 2022 Share Posted March 23, 2022 I've used this code on a website I'm working on, but the shopping cart icon disappears on tablet view. Any thoughts? peregrineplants.com Link to comment
tuanphan Posted March 26, 2022 Share Posted March 26, 2022 On 3/24/2022 at 6:02 AM, GraemeWalker said: I've used this code on a website I'm working on, but the shopping cart icon disappears on tablet view. Any thoughts? peregrineplants.com It looks like you figured it out? I see cart icon on tablet now Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Graphicaljordan Posted December 20, 2022 Share Posted December 20, 2022 Hi, I would love to know how to get the cart icon to re-appear! Thanks Link to comment
Graphicaljordan Posted December 20, 2022 Share Posted December 20, 2022 Solved thanks! 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