Text before image in sections Image with text - Dawn Theme

Hello, can somebody help me to place the text before image in sections image with text on mobile only.

https://khi7hb8zdxva8nji-68850549019.shopifypreview.com - Preview to my website

Thank you!

1 Like

Hi @YordanB

Do you mean like this?

all your image with text will be like this, do you like only in the specific one? check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

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 only screen and (max-width: 749px){
.image-with-text__grid.grid.grid--gapless.grid--1-col.grid--2-col-tablet {
    flex-direction: column-reverse;
}
}

And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like