TOMweb Posted December 30, 2020 Share Posted December 30, 2020 Hi all! I am working on a dark mode version of my website. I am trying to change the first section background image of the landing page to another image when the viewer uses dark mode, but can't manage to make it work. Here is what I tried so far: @media (prefers-color-scheme: dark) { [data-section-id="5feca0a7dc82f97fd38e575d"] .section-background img { visibility: hidden; } /* set new image */ [data-section-id="5feca0a7dc82f97fd38e575d"] .section-background { background-image: url(https://static1.squarespace.com/static/5f0cd7575142de45f1d531a7/t/5feca8261d1415656f7995fb/1609345064730/WEBtransats_landingpage_night_123020.jpg); background-size: cover; background-repeat: no-repeat; background-position: center center; } } } Any help is appreciated. Thank you! Link to comment
Beyondspace Posted December 30, 2020 Share Posted December 30, 2020 27 minutes ago, TOMweb said: Site URL: https://endive-denim-89ds.squarespace.com/ pw: 1404-Hello Hi all! I am working on a dark mode version of my website. I am trying to change the first section background image of the landing page to another image when the viewer uses dark mode, but can't manage to make it work. Here is what I tried so far: @media (prefers-color-scheme: dark) { [data-section-id="5feca0a7dc82f97fd38e575d"] .section-background img { visibility: hidden; } /* set new image */ [data-section-id="5feca0a7dc82f97fd38e575d"] .section-background { background-image: url(https://static1.squarespace.com/static/5f0cd7575142de45f1d531a7/t/5feca8261d1415656f7995fb/1609345064730/WEBtransats_landingpage_night_123020.jpg); background-size: cover; background-repeat: no-repeat; background-position: center center; } } } Any help is appreciated. Thank you! You got wrong id of the section, use this extension to find correct id Chrome Web Store - Extensions (google.com) @media (prefers-color-scheme: dark) { section[data-section-id="5f0cddf0784c68415c9814fb"] .section-background img { visibility: hidden; } /* set new image */ section[data-section-id="5f0cddf0784c68415c9814fb"] .section-background { background-image: url(https://static1.squarespace.com/static/5f0cd7575142de45f1d531a7/t/5feca8261d1415656f7995fb/1609345064730/WEBtransats_landingpage_night_123020.jpg); background-size: cover; background-repeat: no-repeat; background-position: center center; } } BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) 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
TOMweb Posted December 30, 2020 Author Share Posted December 30, 2020 Right on! Thank you 🙂 Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.