SNS Posted May 26, 2020 Share Posted May 26, 2020 Do any of you guys know a solution for how to rearrange blocks for mobile? My site currently has <IMAGE TEXT> <TEXT IMAGE> <IMAGE TEXT> But I'd like the mobile view to be <IMAGE TEXT> <IMAGE TEXT> <IMAGE TEXT> disc-caper-gap6.squarespace.com (password tony) Link to comment
tuanphan Posted May 27, 2020 Share Posted May 27, 2020 Add to Home > Design > custom CSS @media screen and (max-width:767px) { div#page-section-5ec14e6a80b6627d6b65ecb6>.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
iamraag Posted January 3, 2021 Share Posted January 3, 2021 @tuanphan That didn't work for me. Here's my website - https://www.madebydot.tv/ I'm having issues with the 'Featured work' section of my website. I like how it is on the desktop, but on mobile, I want this specific order - Project GIF > Title > Description > View Project button > Spacer (and then the next project thumbnail) Would really appreciate some help! Link to comment
tuanphan Posted January 3, 2021 Share Posted January 3, 2021 17 minutes ago, iamraag said: @tuanphan That didn't work for me. Here's my website - https://www.madebydot.tv/ I'm having issues with the 'Featured work' section of my website. I like how it is on the desktop, but on mobile, I want this specific order - Project GIF > Title > Description > View Project button > Spacer (and then the next project thumbnail) Would really appreciate some help! Add to Custom CSS /* featured work */ @media screen and (max-width:767px) { div#page-5fdeee8cc18bd5077cac6b50>.row:nth-child(2) { 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
iamraag Posted January 3, 2021 Share Posted January 3, 2021 @tuanphan Thank you! That only worked for the very first block though (you can check my website now), how do I make sure it applies to all? I added the text to Home > Design > Custom CSS. Link to comment
tuanphan Posted January 3, 2021 Share Posted January 3, 2021 15 minutes ago, iamraag said: @tuanphan Thank you! That only worked for the very first block though (you can check my website now), how do I make sure it applies to all? I added the text to Home > Design > Custom CSS. I see 2 feature work projects & looks fine here? 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
iamraag Posted January 3, 2021 Share Posted January 3, 2021 @tuanphan I meant to do that for all projects below the title 'Featured work' - Even the ones below the 'Our clients'. Sorry for the confusion - Really appreciate the help and quick responses! Life saver! Attaching some screenshots to this message for some projects Link to comment
iamraag Posted January 5, 2021 Share Posted January 5, 2021 @tuanphan Could you help me out here? Link to comment
iamraag Posted January 6, 2021 Share Posted January 6, 2021 @bangank36 Could you help me out here? Link to comment
tuanphan Posted January 7, 2021 Share Posted January 7, 2021 Add this code @media screen and (max-width:767px) { div#block-yui_3_17_2_1_1608630180737_34906+.row, div#block-yui_3_17_2_1_1608452593373_158208+.row, div#block-yui_3_17_2_1_1608452593373_278908+.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
Archived
This topic is now archived and is closed to further replies.