charlesstemen Posted May 20, 2020 Share Posted May 20, 2020 Site URL: https://art.charlesstemen.com/ I'm selling photo prints. On mobile my product images are being cropped on the store, product, and fullscreen preview page in a way where the user will never see the full product. Making white bars on the images that get cropped or putting an duplicate image into the additional info were suggestions I got from Squarespage support - so clunky haha, not what I am looking for... I get and am ok with the cropping on the store / product page, but it seems crazy to me that the fullscreen image would be cropped and not just responsively fit any size image to the width of the screen. Whats frustrating is that if I switch from desktop to mobile while in the fullscreen image preview, it shows the image uncropped! So I can see it how I want it! But does not do this ever when on mobile/clicking into fullscreen preview from mobile, so not very helpful. Is there some CSS I can add to remove image cropping on mobile/tablets for the fullscreen preview and potentially the product detail page entirely? Alternating between slideshow/stacked/carousel does not affect mobile appearance, and not seeing any other changes within Squarespace that would address this. Ive seen some other threads with similar topics, so maybe this is a lost cause.. Link to comment
tuanphan Posted May 21, 2020 Share Posted May 21, 2020 It seems you solved with CSS? 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
Argenis Posted May 22, 2020 Share Posted May 22, 2020 May I ask, are you printing the art yourself or using an online service? Thanks a bunch! Link to comment
charlesstemen Posted June 13, 2020 Author Share Posted June 13, 2020 On 5/21/2020 at 7:13 AM, tuanphan said: It seems you solved with CSS? I did solve with CSS eventually, yes. On 5/22/2020 at 4:25 AM, Argenis said: May I ask, are you printing the art yourself or using an online service? Thanks a bunch! I am using an online service. Link to comment
Aerdon Posted August 30, 2020 Share Posted August 30, 2020 Can you please share the CSS you used to solve this? Thanks! Link to comment
tuanphan Posted August 30, 2020 Share Posted August 30, 2020 5 hours ago, Aerdon said: Can you please share the CSS you used to solve this? Thanks! I see this CSS in above site @media screen and (max-width: 767px) { .tweak-product-basic-item-gallery-aspect-ratio-11-square .ProductItem-gallery-slides:before { padding-bottom:0 } .ProductItem-gallery-slides-item { position: static; height: auto; overflow: initial } .ProductItem-gallery-slides-item.selected .ProductItem-gallery-slides-item-image { left: 0 !important; top: 0 !important; width: auto !important; height: auto !important; max-width: 100% } } CatherineJoMorgan 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
emmagkelly Posted October 18, 2020 Share Posted October 18, 2020 I have the same issue, and the above CSS did not help me. Link to comment
tuanphan Posted October 21, 2020 Share Posted October 21, 2020 Can you share link to product? 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!) Link to comment
thetv Posted October 24, 2020 Share Posted October 24, 2020 I'm having a similar issue with my slideshow gallery on mobile. http://www.thomvallance.com Link to comment
tuanphan Posted October 24, 2020 Share Posted October 24, 2020 1 hour ago, thetv said: I'm having a similar issue with my slideshow gallery on mobile. http://www.thomvallance.com Add to Home > Design > Custom CSS @media screen and (max-width:640px) { div#block-yui_3_17_2_1_1592935235062_24451 img { width: 100% !important; left: 0 !important; height: auto !important; } div#block-yui_3_17_2_1_1592935235062_24451 {height: 200px;} } 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
sjcwallprints Posted January 27, 2021 Share Posted January 27, 2021 On 8/30/2020 at 5:29 PM, tuanphan said: I see this CSS in above site @media screen and (max-width: 767px) { .tweak-product-basic-item-gallery-aspect-ratio-11-square .ProductItem-gallery-slides:before { padding-bottom:0 } .ProductItem-gallery-slides-item { position: static; height: auto; overflow: initial } .ProductItem-gallery-slides-item.selected .ProductItem-gallery-slides-item-image { left: 0 !important; top: 0 !important; width: auto !important; height: auto !important; max-width: 100% } } I am having the same problem, but this CSS didn't help. Any ideas? https://stephenchowphotography.com/shop/p/choi-hung Link to comment
tuanphan Posted January 31, 2021 Share Posted January 31, 2021 On 1/26/2021 at 9:55 PM, sjcwallprints said: I am having the same problem, but this CSS didn't help. Any ideas? https://stephenchowphotography.com/shop/p/choi-hung Hi. Do you still need help? 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
sjcwallprints Posted January 31, 2021 Share Posted January 31, 2021 4 minutes ago, tuanphan said: Hi. Do you still need help? Yes I do please! Link to comment
tuanphan Posted January 31, 2021 Share Posted January 31, 2021 23 minutes ago, sjcwallprints said: Yes I do please! Try adding to Design > Custom CSS /* product image mobile cropt */ @media screen and (max-width:767px) { .gallery-lightbox-item img { position: relative; object-fit: initial !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!) Link to comment
sjcwallprints Posted January 31, 2021 Share Posted January 31, 2021 9 minutes ago, tuanphan said: Try adding to Design > Custom CSS /* product image mobile cropt */ @media screen and (max-width:767px) { .gallery-lightbox-item img { position: relative; object-fit: initial !important; } } Unfortunately this didn’t work well. It squeezed the photo to fit instead: Link to comment
tuanphan Posted February 6, 2021 Share Posted February 6, 2021 try chaning initial to contain 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
sjcwallprints Posted February 6, 2021 Share Posted February 6, 2021 That worked. Thank you! Link to comment
ShortAngryViking Posted August 8, 2021 Share Posted August 8, 2021 On 8/30/2020 at 9:29 PM, tuanphan said: I see this CSS in above site @media screen and (max-width: 767px) { .tweak-product-basic-item-gallery-aspect-ratio-11-square .ProductItem-gallery-slides:before { padding-bottom:0 } .ProductItem-gallery-slides-item { position: static; height: auto; overflow: initial } .ProductItem-gallery-slides-item.selected .ProductItem-gallery-slides-item-image { left: 0 !important; top: 0 !important; width: auto !important; height: auto !important; max-width: 100% } } Hi Tuanphan will this CSS be site wide adjustment? Link to comment
tuanphan Posted August 9, 2021 Share Posted August 9, 2021 10 hours ago, ShortAngryViking said: Hi Tuanphan will this CSS be site wide adjustment? Try this @media screen and (max-width: 767px) { .ProductItem-gallery-slides:before { padding-bottom:0 } .ProductItem-gallery-slides-item { position: static; height: auto; overflow: initial } .ProductItem-gallery-slides-item.selected .ProductItem-gallery-slides-item-image { left: 0 !important; top: 0 !important; width: auto !important; height: auto !important; 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!) Link to comment
ShortAngryViking Posted September 3, 2021 Share Posted September 3, 2021 @tuanphan I will have to look into this at a later date... just finished the site and realised all of my margins and background full width pages are all looking nasty on mobile. Any help from your extensive knowledge would be graciously honored https://ray-cone-ap64.squarespace.com/config/design/ Link to comment
tuanphan Posted September 4, 2021 Share Posted September 4, 2021 On 9/3/2021 at 12:35 PM, ShortAngryViking said: @tuanphan I will have to look into this at a later date... just finished the site and realised all of my margins and background full width pages are all looking nasty on mobile. Any help from your extensive knowledge would be graciously honored https://ray-cone-ap64.squarespace.com/config/design/ Hi, Disable image cropping or what problem? ShortAngryViking 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
ShortAngryViking Posted September 9, 2021 Share Posted September 9, 2021 (edited) On 9/4/2021 at 7:39 PM, tuanphan said: Hi, Disable image cropping or what problem? when i view https://www.studiolucephoto.com/portfolio on mobile the images are HUGE and I would love them to be cropped small to fit on the mobile screen..unless you recommend leaving the image that size and forcing viewers to rotate the screen. I am open to any ideas? this was meant to be my gallery but it looks like dogs breakfast Edited September 9, 2021 by ShortAngryViking Link to comment
tuanphan Posted September 11, 2021 Share Posted September 11, 2021 On 9/9/2021 at 8:56 PM, ShortAngryViking said: when i view https://www.studiolucephoto.com/portfolio on mobile the images are HUGE and I would love them to be cropped small to fit on the mobile screen..unless you recommend leaving the image that size and forcing viewers to rotate the screen. I am open to any ideas? this was meant to be my gallery but it looks like dogs breakfast Hi, Which plugin did you use to add slideshow? I think we need to tweak it to resize slideshow on mobile 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
nicky Posted October 22, 2021 Share Posted October 22, 2021 Hi I am also having problems with mobile. It is cropping my images rather than resizing responsively for mobile. I would also like the navigation text to be a bit smaller on mobile only - is that possible please? https://glockenspiel-ranunculus-xsje.squarespace.com/ Link to comment
nicky Posted October 22, 2021 Share Posted October 22, 2021 Actually, don't worry now folks. I have got somebody clever to add in some CSS that has sorted the problem! tuanphan 1 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