visionsbyfurks Posted September 23, 2021 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/
DigitalSerif Posted September 23, 2021 Posted September 23, 2021 I was wondering the same thing 🙂 Would love the option.
DigitalSerif Posted September 23, 2021 Posted September 23, 2021 btw, i found this in the forum. May help you:
visionsbyfurks Posted September 23, 2021 Author Posted September 23, 2021 Hi, thanks @DigitalSerif tried the code on there but it doesn't really help sadly
tuanphan Posted September 25, 2021 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 Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
visionsbyfurks Posted April 24, 2022 Author 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
tuanphan Posted April 27, 2022 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 Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Roconnor Posted November 30, 2022 Posted November 30, 2022 Hello, I have added this custom css, but it made the cart icon appear double, any way to fix this?
tuanphan Posted December 2, 2022 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 Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
vinniemac Posted March 2, 2023 Posted March 2, 2023 (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, 2023 by vinniemac
tuanphan Posted March 6, 2023 Posted March 6, 2023 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 Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
vinniemac Posted March 9, 2023 Posted March 9, 2023 That fixed it! Thanks Tuanphan Could it be modified to have the navigation centred with each item on a separate line? Vinnie
tuanphan Posted March 11, 2023 Posted March 11, 2023 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 Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
vinniemac Posted March 14, 2023 Posted March 14, 2023 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.
tuanphan Posted March 16, 2023 Posted March 16, 2023 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 Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment