visionsbyfurks Posted September 23, 2021 Share Posted September 23, 2021 Site URL: https://studiofurks.com/ Hi, I wanted to make sure that on the mobile version my website, the 2 page links that I have would appear without the need of using the hamburger menu. Example of what I'd like: Link to current site: https://studiofurks.com/ Link to comment
DigitalSerif Posted September 23, 2021 Share Posted September 23, 2021 I was wondering the same thing 🙂 Would love the option. Link to comment
DigitalSerif Posted September 23, 2021 Share Posted September 23, 2021 btw, i found this in the forum. May help you: Link to comment
visionsbyfurks Posted September 23, 2021 Author Share Posted September 23, 2021 Hi, thanks @DigitalSerif tried the code on there but it doesn't really help sadly Link to comment
tuanphan Posted September 25, 2021 Share Posted September 25, 2021 Add to Design > Custom CSS /* Force desktop menu on Tablet - Version 1 */ @media screen and (max-width:991px) { .header-display-desktop { display: flex !important; } .header-display-mobile { display: none; } .header-burger { display: none; } .header-nav { display: flex !important; } .header-nav { display: flex !important; flex: 70% !important; justify-content: flex-end; width: 70% !important; } .header-title { flex: 50% !important; } } JustDoNick 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
visionsbyfurks Posted April 24, 2022 Author Share Posted April 24, 2022 (edited) How do I increase the spacing between 2 navigation text links with this code, ONLY on mobile please? @tuanphan Edited April 24, 2022 by visionsbyfurks edit question Link to comment
tuanphan Posted April 27, 2022 Share Posted April 27, 2022 On 4/25/2022 at 2:05 AM, visionsbyfurks said: How do I increase the spacing between 2 navigation text links with this code, ONLY on mobile please? @tuanphan Add this code under @media screen and (max-width:767px) { div.header-nav-item:first-child { margin-right: 40px; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Roconnor Posted November 30, 2022 Share Posted November 30, 2022 Hello, I have added this custom css, but it made the cart icon appear double, any way to fix this? Link to comment
tuanphan Posted December 2, 2022 Share Posted December 2, 2022 On 11/30/2022 at 11:29 PM, Roconnor said: Hello, I have added this custom css, but it made the cart icon appear double, any way to fix this? What is site url? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
vinniemac Posted March 2 Share Posted March 2 (edited) Sorry to be resurrecting an old thread, but I've just tried this code and get the same result with two shopping carts on mobile. Still building the site so it's password protected EDIT - I have two stores set up - one for service and one for product as I want the links to apply in the navigation. Could this be causing it? https://caribou-recorder-j7ex.squarespace.com password `jYTj+W6Sx Any help appreciated Edited March 2 by vinniemac Link to comment
tuanphan Posted March 6 Share Posted March 6 On 3/2/2023 at 4:56 PM, vinniemac said: Sorry to be resurrecting an old thread, but I've just tried this code and get the same result with two shopping carts on mobile. Still building the site so it's password protected EDIT - I have two stores set up - one for service and one for product as I want the links to apply in the navigation. Could this be causing it? https://caribou-recorder-j7ex.squarespace.com password `jYTj+W6Sx Any help appreciated Use this new code /* Force desktop menu on Tablet - Version 1 */ @media screen and (max-width:991px) { .header-display-desktop { display: flex !important; } .header-display-mobile { display: none; } .header-burger { display: none; } .header-nav { display: flex !important; } .header-nav { display: flex !important; flex: 70% !important; justify-content: flex-end; width: 70% !important; } .header-title { flex: 50% !important; } .showOnMobile .header-actions-action.header-actions-action--cart { display: none; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
vinniemac Posted March 9 Share Posted March 9 That fixed it! Thanks Tuanphan Could it be modified to have the navigation centred with each item on a separate line? Vinnie Link to comment
tuanphan Posted March 11 Share Posted March 11 On 3/9/2023 at 6:03 PM, vinniemac said: That fixed it! Thanks Tuanphan Could it be modified to have the navigation centred with each item on a separate line? Vinnie What should it look like? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
vinniemac Posted March 14 Share Posted March 14 What I'm trying to achieve is each navigation item on a separate line Workshops Buy Prints Galleries etc etc Text left justified, but centred between the logo and the shopping cart icons. Link to comment
tuanphan Posted March 16 Share Posted March 16 On 3/14/2023 at 7:42 PM, vinniemac said: What I'm trying to achieve is each navigation item on a separate line Workshops Buy Prints Galleries etc etc Text left justified, but centred between the logo and the shopping cart icons. Use this new code /* Force desktop menu on Tablet - Version 1 */ @media screen and (max-width:991px) { .header-display-desktop { display: flex !important; } .header-display-mobile { display: none; } .header-burger { display: none; } .header-nav nav { flex-direction: column; } .header-nav { display: flex !important; flex: 70% !important; justify-content: flex-end; width: 70% !important; } .header-title { flex: 50% !important; } .showOnMobile .header-actions-action.header-actions-action--cart { display: none; } } vinniemac 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care 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