Karkom Posted January 1, 2021 Share Posted January 1, 2021 Site URL: https://www.ghoulsmagazine.com/film-reviews Hello, at the bottom of this page https://www.ghoulsmagazine.com/film-reviews I have a summary block pulling from my shop at the bottom of the page. I'd like to have 2 products per row on the mobile view but I'm struggling to make it work. Does anybody know if this can be achieved please? thanks a lot Link to comment
Arif_79 Posted January 1, 2021 Share Posted January 1, 2021 I am having the issue and raised a case with Square space support as seems the images do not render as 2 images on the mobile i have tried everything Link to comment
tuanphan Posted January 1, 2021 Share Posted January 1, 2021 Add to Home > Design > Custom CSS /* products 2 columns */ @media screen and (max-width:767px) { div#block-yui_3_17_2_1_1609512364464_27908 .summary-item-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-column-gap: 10px; grid-row-gap: 10px; } } Can you share site url? We can help easier @Arif_79 2 hours ago, Arif_79 said: I am having the issue and raised a case with Square space support as seems the images do not render as 2 images on the mobile i have tried everything Karkom 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
Karkom Posted January 2, 2021 Author Share Posted January 2, 2021 (edited) Hi @tuanphan and thanks a lot. The above code worked on that page. However, when i select one of the three top button which link to a filter view, the products display again 1 image at the time on mobile. https://www.ghoulsmagazine.com/blog?category=Thriller https://www.ghoulsmagazine.com/blog?category=Horror https://www.ghoulsmagazine.com/blog?category=Sci-Fi Is there a way to have this fixed for these pages as well please? Edited January 2, 2021 by Lelelndn Link to comment
Karkom Posted January 3, 2021 Author Share Posted January 3, 2021 Got it, I've found the block_yui for that section 🙂 Link to comment
mljp Posted August 21, 2021 Share Posted August 21, 2021 I'm having similar troubles. Figured out the code for the "pacifiers" page, but not for the 4 product blocks on the main home page. I'd like to have them stack 2x2 on the homepage. Help? Link to comment
tuanphan Posted August 22, 2021 Share Posted August 22, 2021 10 hours ago, mljp said: I'm having similar troubles. Figured out the code for the "pacifiers" page, but not for the 4 product blocks on the main home page. I'd like to have them stack 2x2 on the homepage. Help? Can you share link to your site? 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
mljp Posted August 25, 2021 Share Posted August 25, 2021 On 8/22/2021 at 4:09 AM, tuanphan said: Can you share link to your site? Yes, www.oopsiedaizee.com. I ended up just getting rid of the main page for ease of navigation - but could you tell me how to center the text under the product image for desktop viewing? I probably just need clean code for stacking the product images x 2. Link to comment
tuanphan Posted August 27, 2021 Share Posted August 27, 2021 On 8/25/2021 at 7:11 AM, mljp said: Yes, www.oopsiedaizee.com. I ended up just getting rid of the main page for ease of navigation - but could you tell me how to center the text under the product image for desktop viewing? I probably just need clean code for stacking the product images x 2. Add to Design > Custom CSS figure.grid-image { margin: 0 auto !important; } mljp 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
mljp Posted August 28, 2021 Share Posted August 28, 2021 On 8/26/2021 at 11:42 PM, tuanphan said: Add to Design > Custom CSS figure.grid-image { margin: 0 auto !important; } Thank you! YOU ARE A WIZARD! Link to comment
SUN1992 Posted September 24, 2021 Share Posted September 24, 2021 Hi @tuanphan I am having the same problem, I can't dispay two products on phone version. the site is www.afterlifemode.com let me know if you know how to do it please. Much appreciated Link to comment
tuanphan Posted September 27, 2021 Share Posted September 27, 2021 On 9/24/2021 at 11:41 PM, SUN1992 said: Hi @tuanphan I am having the same problem, I can't dispay two products on phone version. the site is www.afterlifemode.com let me know if you know how to do it please. Much appreciated You mean products on homepage? Add to Design > Custom CSS /* Mobile-Homepage-Products */ @media screen and (max-width:767px) { div#block-yui_3_17_2_1_1627387512089_7380~.row .span-3, div#block-yui_3_17_2_1_1627387512089_7380~.row .span-4 { width: 50% !important; float: left !important; } div#block-yui_3_17_2_1_1627387512089_7380~.row .span-3:nth-child(2n+1) { clear: left; } } 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
SUN1992 Posted September 27, 2021 Share Posted September 27, 2021 Hi @tuanphan thank you so much for homepage it worked!! but I meant in the different categories, when you go to Shop > Dresses / Outerwear / Knitwear / Tops and Shirts / (and all the different categories) Link to comment
tuanphan Posted September 28, 2021 Share Posted September 28, 2021 22 hours ago, SUN1992 said: Hi @tuanphan thank you so much for homepage it worked!! but I meant in the different categories, when you go to Shop > Dresses / Outerwear / Knitwear / Tops and Shirts / (and all the different categories) Hi, I see no products in Outerwear / Knitwear. Can you check it again? With Tops & Shirts, use this CSS @media screen and (max-width:640px) { div#productList { display: grid; grid-template-columns: repeat(2,1fr) !important; grid-column-gap: 10px; } } 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
littleprojectsnz Posted December 5, 2022 Share Posted December 5, 2022 (edited) Hi @tuanphan I am having the same problem, I can't dispay two products on phone version. the site is www.walkintheparknz.com let me know if you know how to do it please. Much appreciated Edited December 6, 2022 by littleprojectsnz Link to comment
tuanphan Posted December 10, 2022 Share Posted December 10, 2022 On 12/6/2022 at 6:34 AM, littleprojectsnz said: Hi @tuanphan I am having the same problem, I can't dispay two products on phone version. the site is www.walkintheparknz.com let me know if you know how to do it please. Much appreciated Where is page? I can't find shop or product page on your site 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
littleprojectsnz Posted March 15, 2023 Share Posted March 15, 2023 On 12/10/2022 at 10:15 PM, tuanphan said: Where is page? I can't find shop or product page on your site www.walkintheparknz.com/mills-2023 Link to comment
tuanphan Posted March 18, 2023 Share Posted March 18, 2023 On 3/15/2023 at 3:19 PM, littleprojectsnz said: www.walkintheparknz.com/mills-2023 Add to Design > Custom CSS /* Mobile Products 2 columns */ @media screen and (max-width:700px) { div#productList { display: grid !important; grid-template-columns: repeat(2,1fr); grid-gap: 10px 10px; } } 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
FindingAlice Posted October 14, 2023 Share Posted October 14, 2023 I am having same issues as others. I would like two tiles to be displayed on mobile site, not one. I used your code before and it worked but has since stopped working. Can you assist please? https://www.findingalicedesigns.com/ Link to comment
Solution paul2009 Posted October 15, 2023 Solution Share Posted October 15, 2023 (edited) On 10/14/2023 at 9:52 PM, FindingAlice said: I would like two tiles to be displayed on mobile site, not one. I used your code before and it worked but has since stopped working. You no longer need code to achieve this because Squarespace have just added this as a feature to Squarespace 7.1. If you've used code to add two columns, it will be safer to remove this and use the built-in feature instead. To access this feature, go to your Store page and click Edit. Put the preview into Mobile View (using the buttons in the top-right corner) and then click Edit Section. You’ll be able to update your mobile column layout to two columns instead of one. Having two columns on mobile (instead of one) typically increases sales by 18%. Note that this setting only affects the style of the mobile page. You can independently adjust the number of columns in the desktop layout by putting the preview into Desktop View. Did this help? Please give feedback by clicking an icon below ⬇️ Edited February 6 by paul2009 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
FindingAlice Posted October 27, 2023 Share Posted October 27, 2023 thank you very much. Link to comment
harveylm Posted December 18, 2023 Share Posted December 18, 2023 On 1/1/2021 at 5:30 PM, tuanphan said: Add to Home > Design > Custom CSS /* products 2 columns */ @media screen and (max-width:767px) { div#block-yui_3_17_2_1_1609512364464_27908 .summary-item-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-column-gap: 10px; grid-row-gap: 10px; } } Can you share site url? We can help easier @Arif_79 I need some help with this for a clients site. The website is http://www.prosperity-us.online I put the CSS in but it is not working Link to comment
tuanphan Posted December 21, 2023 Share Posted December 21, 2023 On 12/19/2023 at 5:29 AM, harveylm said: I need some help with this for a clients site. The website is http://www.prosperity-us.online I put the CSS in but it is not working What is access password? 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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment