Anthonylozada Posted November 30, 2020 Posted November 30, 2020 Hello! On my website, I have a photography section, and I have the images in 3 column view, but whenever I look at the page on mobile, it makes it a 2 column view. How can I make it a 3 column view on mobile? Thanks!
ando_337 Posted December 1, 2020 Posted December 1, 2020 Same question for Squarespace 7.1! Anyone who know what to do? 🙂
tuanphan Posted December 5, 2020 Posted December 5, 2020 Can you share site url? We can check easier 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!)
ando_337 Posted December 5, 2020 Posted December 5, 2020 Thanks! I already solved the problem by using one picture (showing my 6 icons) instead of 6 singe ones.
Anthonylozada Posted December 5, 2020 Author Posted December 5, 2020 7 hours ago, tuanphan said: Can you share site url? We can check easier The website isn't live yet, so hopefully this will work. https://rhino-gar-3ghz.squarespace.com/p1
Anthonylozada Posted December 5, 2020 Author Posted December 5, 2020 8 hours ago, tuanphan said: Can you share site url? We can check easier I don't think i can share the site url since it isn't live but I've attached a few images. The first two is the difference between the desktop and mobile views. The third image is a new issue i have, I want the item description and check out area to match size proportionately with the item size, i haven't been able to do that. Also, I can't seem to get rid of that empty space above the item. How can i remove all of that empty space?
tuanphan Posted December 6, 2020 Posted December 6, 2020 You can setup password & share 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!)
Anthonylozada Posted December 6, 2020 Author Posted December 6, 2020 14 hours ago, tuanphan said: You can setup password & share url https://rhino-gar-3ghz.squarespace.com/film/p1 First link in mobile view only shows 2 column view when it's 3 on desktop Password - red And here's the link to an item listing. All of them have that empty space on the top in the desktop view https://rhino-gar-3ghz.squarespace.com/shop/p/alocasia-yyche-2ctba
tuanphan Posted December 8, 2020 Posted December 8, 2020 Add to Home > Design > Custom CSS @media screen and (max-width:767px) { .gallery-grid-wrapper { grid-template-columns: repeat(3,1fr) !important; } } nav.ProductItem-nav { display: none !important; } 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!)
Anthonylozada Posted December 15, 2020 Author Posted December 15, 2020 On 12/6/2020 at 3:36 AM, tuanphan said: You can setup password & share url I still need some additional assistance in regard to the empty space when I'm in the shop, there's such a huge empty gap. How can I remove that empty space?
tuanphan Posted December 15, 2020 Posted December 15, 2020 Which space? 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!)
Anthonylozada Posted December 15, 2020 Author Posted December 15, 2020 14 minutes ago, tuanphan said: Which space? I edited the picture so you could see. I'd like for it to be much closer.
tuanphan Posted December 15, 2020 Posted December 15, 2020 4 hours ago, Anthonylozada said: I edited the picture so you could see. I'd like for it to be much closer. Add to Home > Design > Custom CSS /* space between product - header */ section.products.collection-content-wrapper.product-layout-side-by-side { padding-top: 5px; } 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!)
Anthonylozada Posted December 15, 2020 Author Posted December 15, 2020 7 hours ago, tuanphan said: Add to Home > Design > Custom CSS /* space between product - header */ section.products.collection-content-wrapper.product-layout-side-by-side { padding-top: 5px; } Thank you! You're amazing
tuanphan Posted December 17, 2020 Posted December 17, 2020 On 12/15/2020 at 11:57 PM, Anthonylozada said: Thank you! You're amazing On tablet, shop is 1 item/row. Do you want to change to 2 items/row? You can add this to Home > Design > Custom CSS /* grid tablet 2 items */ @media screen and (max-width:991px) and (min-width:768px) { .gallery-grid-wrapper { grid-template-columns: repeat(2,1fr) !important; } } 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!)
Anthonylozada Posted December 19, 2020 Author Posted December 19, 2020 On 12/17/2020 at 9:53 AM, tuanphan said: On tablet, shop is 1 item/row. Do you want to change to 2 items/row? You can add this to Home > Design > Custom CSS /* grid tablet 2 items */ @media screen and (max-width:991px) and (min-width:768px) { .gallery-grid-wrapper { grid-template-columns: repeat(2,1fr) !important; } } Wow, you absolutely read my mind! I was going to ask you about this. That screenshot is of the photography section. In the Shop, It's only 1 item/1row, I'd like to change that to make it 2 rows. I put in the CSS and it didn't change it. I appreciate your help so much
tuanphan Posted December 22, 2020 Posted December 22, 2020 On 12/19/2020 at 11:12 PM, Anthonylozada said: Wow, you absolutely read my mind! I was going to ask you about this. That screenshot is of the photography section. In the Shop, It's only 1 item/1row, I'd like to change that to make it 2 rows. I put in the CSS and it didn't change it. I appreciate your help so much above code for Tablet, not mobile. Use this new code /* grid tablet 2 items */ @media screen and (max-width:991px) { .gallery-grid-wrapper { grid-template-columns: repeat(2,1fr) !important; } } 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!)
Anthonylozada Posted December 22, 2020 Author Posted December 22, 2020 34 minutes ago, tuanphan said: above code for Tablet, not mobile. Use this new code /* grid tablet 2 items */ @media screen and (max-width:991px) { .gallery-grid-wrapper { grid-template-columns: repeat(2,1fr) !important; } } Doesn't appear to be working
tuanphan Posted December 22, 2020 Posted December 22, 2020 New code @media screen and (max-width:991px) { .products.collection-content-wrapper .list-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-column-gap: 10px; grid-row-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!)
Anthonylozada Posted December 22, 2020 Author Posted December 22, 2020 1 hour ago, tuanphan said: New code @media screen and (max-width:991px) { .products.collection-content-wrapper .list-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-column-gap: 10px; grid-row-gap: 10px; } } You're a genius! Thank you so so much!!!
Anthonylozada Posted March 1, 2021 Author Posted March 1, 2021 On 12/21/2020 at 9:21 PM, tuanphan said: New code @media screen and (max-width:991px) { .products.collection-content-wrapper .list-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-column-gap: 10px; grid-row-gap: 10px; } } Hello, I need your wonderful help again! I want my footer to line up with my site header. I tried achieving that using spacers, but it wouldn't work. How can i go about doing that? Thanks!
tuanphan Posted March 3, 2021 Posted March 3, 2021 On 3/1/2021 at 11:01 AM, Anthonylozada said: Hello, I need your wonderful help again! I want my footer to line up with my site header. I tried achieving that using spacers, but it wouldn't work. How can i go about doing that? Thanks! Add to Design > Custom CSS /* Align header - footer */ footer.sections section .content-wrapper { max-width: 100%; } 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!)
Anthonylozada Posted March 4, 2021 Author Posted March 4, 2021 15 hours ago, tuanphan said: Add to Design > Custom CSS /* Align header - footer */ footer.sections section .content-wrapper { max-width: 100%; } Thank you so so much!!!!! You're amazing! One more thing, please. The two images I've posted show the issue I'm having, I illustrated wanting to be able to adjust the size of that section. I want it to be closer to "the house of medici" but I can't adjust how far it is from that section
tuanphan Posted March 7, 2021 Posted March 7, 2021 On 3/4/2021 at 7:46 AM, Anthonylozada said: Thank you so so much!!!!! You're amazing! One more thing, please. The two images I've posted show the issue I'm having, I illustrated wanting to be able to adjust the size of that section. I want it to be closer to "the house of medici" but I can't adjust how far it is from that section Hi. Can you share link to page in screenshot? 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
Archived
This topic is now archived and is closed to further replies.