Image with text position on mobile

I need help reversing the position of my image with text on the about section (for mobile). I want the text/content at the top before the image appears.

Link: https://ehv1h9-zc.myshopify.com/pages/about

Password: yeotwi

Hi @Ked ,

Thanks for your question. Here is the instruction that you can follow :

  1. Go to Shopify > Online store > Theme > Customize > Open Custom CSS

  2. Copy the code below and paste to the section.

Here will be the result: screenshot

@media screen and (max-width: 575px){
.icQ9qqfYmbGUwjsNL {
   flex-direction: column-reverse !important;
}
}

I hope it helps.

Hi @Ked

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media (max-width: 768px) {
    .__instant.iKyYrIkWxEsqQIXP9 .icQ9qqfYmbGUwjsNL {
        flex-direction: column-reverse !important;
    }
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Hi

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEEThanks!

The code is not working

The code is not working

This is the wrong section. Please go to the about page not the home page

Thank you but I dont want it for every image with text section. I want the reversal for only the sections on the about page. Please help

Add this one, same instruction.

@media (max-width: 768px) {
#s--template--23659759796535__section_image_text_Di6UaQ .s__content, 
#s--template--23659759796535__section_image_text_GD4fkz .s__content, 
#s--template--23659759796535__section_image_text_8R8DFY .s__content {
    flex-direction:column-reverse !important;
}
}

And Save.

result:

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!