Luksan7 Posted August 28, 2022 Share Posted August 28, 2022 Site URL: http://wislinski.com Hello, I'm lost trying to change my menu background and font color (that shows when "Menu" button is clicked on mobile) it's tied to something I don't quite get to grasp yet and the colors are really "heavy" when I manage to change it, it also changes something on my site. Also I would like to have rows with two items shown on mobile if that's possible. Site is: Wislinski.com password: 123456789 Help appreciated, thank you Luka Link to comment
Beyondspace Posted August 28, 2022 Share Posted August 28, 2022 2 hours ago, Luksan7 said: Site URL: http://wislinski.com Hello, I'm lost trying to change my menu background and font color (that shows when "Menu" button is clicked on mobile) it's tied to something I don't quite get to grasp yet and the colors are really "heavy" when I manage to change it, it also changes something on my site. Also I would like to have rows with two items shown on mobile if that's possible. Site is: Wislinski.com password: 123456789 Help appreciated, thank you Luka Try adding to Home > Design > Custom Css #mobileNav .main-nav.mobile-nav a { color: #fff ; } Let me know how it works on your site Luksan7 1 BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! Link to comment
Beyondspace Posted August 28, 2022 Share Posted August 28, 2022 My testing Luksan7 1 BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! Link to comment
Luksan7 Posted September 13, 2022 Author Share Posted September 13, 2022 On 8/28/2022 at 4:32 PM, bangank36 said: Try adding to Home > Design > Custom Css #mobileNav .main-nav.mobile-nav a { color: #fff ; } Let me know how it works on your site Yes, sorry for the long reply time, it works great, is there any way to change the background color with coding also? And the two products per row would be great to know. Thank you again. Link to comment
Beyondspace Posted September 13, 2022 Share Posted September 13, 2022 (edited) 3 hours ago, Luksan7 said: Yes, sorry for the long reply time, it works great, is there any way to change the background color with coding also? And the two products per row would be great to know. Thank you again. you can try the following Css code @media only screen and (max-width: 800px){ #mobileNav { background: #000; } #productList { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 10px } #productList .product-image img { width: 100% !important; height: 100% !important; } Edited September 13, 2022 by bangank36 BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! Link to comment
Luksan7 Posted September 13, 2022 Author Share Posted September 13, 2022 2 hours ago, bangank36 said: you can try the following Css code @media only screen and (max-width: 800px){ #mobileNav { background: #000; } #productList { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 10px } #productList .product-image img { width: 100% !important; height: 100% !important; } Thanks! The code was missing closing "}" before #mobileNav but it works after adding one, however it messes up my desktop shop layout a lot, is there any way to implement it only on mobile? Regards Link to comment
Beyondspace Posted September 14, 2022 Share Posted September 14, 2022 12 hours ago, Luksan7 said: Thanks! The code was missing closing "}" before #mobileNav but it works after adding one, however it messes up my desktop shop layout a lot, is there any way to implement it only on mobile? Regards You can try changing the breakpoint into 767px BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! 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