ponby Posted April 13, 2022 Posted April 13, 2022 Site URL: https://themindfulvillage.net Hi, I'm trying to display different header banner images for web and mobile, so i used the following code in the blog main page header code injection: <style> @media only screen and (max-width: 760px) { #page section:nth-of-type(1) { display: none; } } @media only screen and (min-width: 761px) { #page section:nth-of-type(2) { display: none !important; } } </style> However, while the blog main page turned out ass expected, I could not longer see the blog post content when i click into a post on mobile. Is there any workaround so that this code doesn't affect the individual blog post pages? Thank you so much!
Beyondspace Posted April 17, 2022 Posted April 17, 2022 On 4/13/2022 at 10:31 PM, ponby said: Site URL: https://themindfulvillage.net Hi, I'm trying to display different header banner images for web and mobile, so i used the following code in the blog main page header code injection: <style> @media only screen and (max-width: 760px) { #page section:nth-of-type(1) { display: none; } } @media only screen and (min-width: 761px) { #page section:nth-of-type(2) { display: none !important; } } </style> However, while the blog main page turned out ass expected, I could not longer see the blog post content when i click into a post on mobile. Is there any workaround so that this code doesn't affect the individual blog post pages? Thank you so much! Do you still need help? BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox - PDF Lightbox popup - ...) </> 🗓️ Delivery Date Picker (Date picker form field) Gallery block 7.1 workaround </> No-code customisations for Squarespace
tuanphan Posted April 19, 2022 Posted April 19, 2022 On 4/13/2022 at 10:31 PM, ponby said: Site URL: https://themindfulvillage.net Hi, I'm trying to display different header banner images for web and mobile, so i used the following code in the blog main page header code injection: <style> @media only screen and (max-width: 760px) { #page section:nth-of-type(1) { display: none; } } @media only screen and (min-width: 761px) { #page section:nth-of-type(2) { display: none !important; } } </style> However, while the blog main page turned out ass expected, I could not longer see the blog post content when i click into a post on mobile. Is there any workaround so that this code doesn't affect the individual blog post pages? Thank you so much! Change to this code <style> @media only screen and (max-width: 760px) { body:not(.view-item) #page section:nth-of-type(1) { display: none; } } @media only screen and (min-width: 761px) { body:not(.view-item) #page section:nth-of-type(2) { display: none !important; } } </style> ponby 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!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment