louis1996 Posted January 12, 2022 Share Posted January 12, 2022 Site URL: https://www.warners-stores.co.uk/beaus-bakehouse Hi all, I've created this page (https://www.warners-stores.co.uk/beaus-bakehouse) with the images on the right hand side on desktop with text on the left. When viewed on mobile I want the images to sit at the top of the page, and the text beneath. At the moment they go to the bottom of the page on mobile. Is there a way to change this? Thanks! Link to comment
tuanphan Posted January 12, 2022 Share Posted January 12, 2022 Add to Design > Custom CSS /* Mobile beau bakehouse image text */ @media screen and (max-width:767px) { div#page-section-61a9e36dae350b52c3a12077>.row { display: flex; flex-direction: column-reverse; } } 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
louis1996 Posted January 12, 2022 Author Share Posted January 12, 2022 4 minutes ago, tuanphan said: Add to Design > Custom CSS /* Mobile beau bakehouse image text */ @media screen and (max-width:767px) { div#page-section-61a9e36dae350b52c3a12077>.row { display: flex; flex-direction: column-reverse; } } Brilliant, thanks @tuanphan, is there a way to run this across lots more similar pages, such as this https://www.warners-stores.co.uk/berrys-ice-cream and https://www.warners-stores.co.uk/bewdley-brewery Thanks Link to comment
tuanphan Posted January 13, 2022 Share Posted January 13, 2022 15 hours ago, louis1996 said: Brilliant, thanks @tuanphan, is there a way to run this across lots more similar pages, such as this https://www.warners-stores.co.uk/berrys-ice-cream and https://www.warners-stores.co.uk/bewdley-brewery Thanks Use this new code /* Mobile beau bakehouse image text */ @media screen and (max-width:767px) { div#page-section-61a9e36dae350b52c3a12077>.row { display: flex; flex-direction: column-reverse; } /* berry ice cream */ div#page-section-61aa07bb42180e7bcc97951f>.row { display: flex; flex-direction: column-reverse; } /* bewdley */ div#page-section-61aa19151310d91d8f8f9417>.row { display: flex; flex-direction: column-reverse; } } 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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment