btgwebb Posted May 31 Share Posted May 31 Hi, SQSP support couldn't help me with this so it's over to you genius folk !! I'm having a spacing problem in the mobile view of my Store (the "Shop" page). I'd like to keep the 1-column mobile view but add more space after the ADD TO CART /PURCHASE buttons to differentiate between the products. It is currently not clear to the user which product/service is adding to the cart (the one above or below). Other workaround options could be to draw a line after each button or add a thin ruby red #91256 box to surround each of the 5 products/services & button. I've checked some of the forum solutions where others have had similar issues but couldn't get the example Custom CSS code to work in my Store. Any clever folk out there able to assist an Irish solopreneur struggling with the subtleties of SQSP? Thanks in advance. Brian https://cobalt-amphibian-475k.squarespace.com/ pword: sandyford Link to comment
Solution Lesum Posted May 31 Solution Share Posted May 31 @btgwebb You can try adding this code snippet under Custom CSS to create a thin ruby red (#B91256) box surrounding each product @media only screen and (max-width: 767px) { .products.collection-content-wrapper .grid-item.is-loaded { padding: 15px !important; border: 1px solid #B91256 !important; } } If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee? Link to comment
paul2009 Posted May 31 Share Posted May 31 2 hours ago, btgwebb said: I'd like to keep the 1-column mobile view but add more space after the ADD TO CART /PURCHASE buttons to differentiate between the products. You should be able to add more space with the following CSS. That saud, I personally prefer the box (solution above). @media screen and (max-width: 767px) { .products.collection-content-wrapper .grid-item { margin-bottom: 84px; } } Did this help? Please give feedback by clicking an icon below ⬇️ Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional. Would you like your customers to be able to mark their favourite products in your Squarespace store? Link to comment
btgwebb Posted May 31 Author Share Posted May 31 (edited) Magic ... Thanks so much @Lesum and @paul2009. I like the box solution so much that I wouldn't mind the red box available on the desktop version also. Could you possibly tweak the code to accommodate desktop view also? ... and round the corners like I have done in the section above (size 20). Thank you. Edited May 31 by btgwebb Lesum 1 Link to comment
Lesum Posted May 31 Share Posted May 31 @btgwebb Here's the updated code: .products.collection-content-wrapper .grid-item.is-loaded { padding: 15px !important; border: 1px solid #B91256 !important; border-radius: 20px !important; } If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee? 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