TheBulkyBard Posted December 1, 2021 Share Posted December 1, 2021 Site URL: https://www.cg3dp.com/pym New here, so apologies if I've asked this question the wrong way. Haven't had any issues finding fixes to problems via past responses on these forums though I've reached an impasse. The following CSS I've used in the page header code injection to make the banner not crop when in mobile is also adding the banner to the product page, making things impossible to read while in mobile view. Is there any way to fix this while maintaining the desired effect from the original CSS? (also, please forgive typos, organizational, placeholders. Still building the site.) " @media only screen and (max-width: 640px){ #page .page-section:nth-child(1) .section-background img {opacity:0 } #page .page-section:nth-child(1) .section-background { background-image: url(https://static1.squarespace.com/static/60af5accb6d92d4c48bc8697/t/619ccc48a270274317d6ed01/1637665864472/PYM+MOBILE+STOREFRONT.png); background-size: cover; background-position: center; background-repeat: no-repeat; } } " Link to comment
Beyondspace Posted December 1, 2021 Share Posted December 1, 2021 2 hours ago, TheBulkyBard said: Site URL: https://www.cg3dp.com/pym New here, so apologies if I've asked this question the wrong way. Haven't had any issues finding fixes to problems via past responses on these forums though I've reached an impasse. The following CSS I've used in the page header code injection to make the banner not crop when in mobile is also adding the banner to the product page, making things impossible to read while in mobile view. Is there any way to fix this while maintaining the desired effect from the original CSS? (also, please forgive typos, organizational, placeholders. Still building the site.) " @media only screen and (max-width: 640px){ #page .page-section:nth-child(1) .section-background img {opacity:0 } #page .page-section:nth-child(1) .section-background { background-image: url(https://static1.squarespace.com/static/60af5accb6d92d4c48bc8697/t/619ccc48a270274317d6ed01/1637665864472/PYM+MOBILE+STOREFRONT.png); background-size: cover; background-position: center; background-repeat: no-repeat; } } " What is your password? BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox - Lightbox captions only mode) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace 🚀 Learn how to rank new pages on Google in 48 hours! 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
TheBulkyBard Posted December 2, 2021 Author Share Posted December 2, 2021 trial&error Meant to include with initial post, but forgot. Link to comment
tuanphan Posted December 4, 2021 Share Posted December 4, 2021 On 12/2/2021 at 12:02 PM, TheBulkyBard said: trial&error Meant to include with initial post, but forgot. To resize top image on mobile, you can add this to Design > Custom CSS @media screen and (max-width:767px) { [data-section-id="60af63810f340a386f267294"] { min-height: unset !important; height: 40vh; margin-top: 40vh; } } 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
TheBulkyBard Posted December 6, 2021 Author Share Posted December 6, 2021 On 12/4/2021 at 2:19 AM, tuanphan said: To resize top image on mobile, you can add this to Design > Custom CSS @media screen and (max-width:767px) { [data-section-id="60af63810f340a386f267294"] { min-height: unset !important; height: 40vh; margin-top: 40vh; } } I did previously reply, though deleted it as I've since tinkered around a bit more and I believe I have a better way to word my question. The issue I'm having is that the "nth-child(1)" is also overriding my product page background (which is usually a regular purple). Is there a way to add exceptions, whether that be all product pages, or if I have to apply it page by page? @media only screen and (max-width: 640px){ #page .page-section:nth-child(1) .section-background img {opacity:0 } #page .page-section:nth-child(1) .section-background { background-image: url(https://static1.squarespace.com/static/60af5accb6d92d4c48bc8697/t/619ccc48a270274317d6ed01/1637665864472/PYM+MOBILE+STOREFRONT.png); background-size: cover; background-position: center; background-repeat: no-repeat; } } Link to comment
TheBulkyBard Posted December 6, 2021 Author Share Posted December 6, 2021 (edited) If I have to simply remove the "Nth child" code, that's fine, I was just hoping I wouldn't have to edit so many images, as I'll have to edit nearly all of the banners. For reference, this only occurs on product pages: Edited December 6, 2021 by TheBulkyBard Needed info. Link to comment
Solution tuanphan Posted December 11, 2021 Solution Share Posted December 11, 2021 On 12/6/2021 at 2:04 PM, TheBulkyBard said: If I have to simply remove the "Nth child" code, that's fine, I was just hoping I wouldn't have to edit so many images, as I'll have to edit nearly all of the banners. For reference, this only occurs on product pages: You should use data-section-id, instead of using #page .page-section:nth-child(1) Use this tool to find data section id. https://chrome.google.com/webstore/detail/squarespace-id-finder/igjamfnifnkmecjidfbdipieoaeghcff?hl=en TheBulkyBard 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
TheBulkyBard Posted December 12, 2021 Author Share Posted December 12, 2021 On 12/11/2021 at 12:03 AM, tuanphan said: You should use data-section-id, instead of using #page .page-section:nth-child(1) Use this tool to find data section id. https://chrome.google.com/webstore/detail/squarespace-id-finder/igjamfnifnkmecjidfbdipieoaeghcff?hl=en Thanks. This worked. Feel kind of embarrassed, as the tutorial I had looked up mentioned it may be a better solution before, but I became so caught up in seeing something I didn't want to happen happening that I overlooked the obvious solution. Seems like sometimes I can create problems that don't exist 😅🤦♂️ 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