Luke0404 Posted April 12, 2021 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
Wolfsilon Posted April 12, 2021 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!
Luke0404 Posted April 13, 2021 Author 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 😞
tuanphan Posted April 14, 2021 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 Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.