Luke0404 Posted April 12, 2021 Share Posted April 12, 2021 Webinars — Masters Who Care I'm talking about 'Step 2", on mobile I want the image of the man to be under the code block. Using this: display: flex; flex-direction: column-reverse; But I can't seem to target the row Link to comment
Wolfsilon Posted April 12, 2021 Share Posted April 12, 2021 Hello! Try this: #collection-6071bad801a4c30c5bbfea13 { @media screen and (max-width:640px){ .sqs-row { display: flex; flex-direction: column-reverse; } } } That should fix it but if you need to target that specific row and only that row, you'll want to use: #collection-6071bad801a4c30c5bbfea13 { @media screen and (max-width:640px){ .sqs-row:nth-child(2) { display: flex; flex-direction: column-reverse; } } } Hope this helps! Link to comment
Luke0404 Posted April 13, 2021 Author Share Posted April 13, 2021 9 hours ago, Wolfsilon said: Hello! Try this: #collection-6071bad801a4c30c5bbfea13 { @media screen and (max-width:640px){ .sqs-row { display: flex; flex-direction: column-reverse; } } } That should fix it but if you need to target that specific row and only that row, you'll want to use: #collection-6071bad801a4c30c5bbfea13 { @media screen and (max-width:640px){ .sqs-row:nth-child(2) { display: flex; flex-direction: column-reverse; } } } Hope this helps! Thanks for the help but nothing happened when I add either of those codes 😞 Link to comment
tuanphan Posted April 14, 2021 Share Posted April 14, 2021 On 4/12/2021 at 11:16 PM, Luke0404 said: Webinars — Masters Who Care I'm talking about 'Step 2", on mobile I want the image of the man to be under the code block. Using this: display: flex; flex-direction: column-reverse; But I can't seem to target the row Hi, I see man under text here. Did you solve the problem? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care 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