Text above image in image-with-text section on mobile

Solved

Text above image in image-with-text section on mobile

skjoldet
Tourist
7 0 1

I have a website skjoldet.dk, where i use the [image with text] section as the first on my home page. 

I would like to show the text before the image in mobile view. How do I do that for that section only? 

I am using the Refresh theme.

I have tried this from another thread but I did not work:

@media only screen and (max-width: 767px) {
.grid.sm-grid-cols-2 {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto;
}
.col-sm-order-2 {
grid-row: 2;
}
}

 

Thanks in advance 🙂

Accepted Solution (1)

oscprofessional
Shopify Partner
16366 2440 3185

This is an accepted solution.

Hello @skjoldet 

1) Go to Online Store > Theme > Edit Code 
2) Open the component-image-with-text.css file
3) Add the code at the end in the file

@media screen and (max-width: 749px) {
  .image-with-text__media-item {
    order: 2;
}
.image-with-text__text-item.grid__item {
    order: 1;
}
}
Hope it works for you
Thanks



Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...

View solution in original post

Reply 1 (1)

oscprofessional
Shopify Partner
16366 2440 3185

This is an accepted solution.

Hello @skjoldet 

1) Go to Online Store > Theme > Edit Code 
2) Open the component-image-with-text.css file
3) Add the code at the end in the file

@media screen and (max-width: 749px) {
  .image-with-text__media-item {
    order: 2;
}
.image-with-text__text-item.grid__item {
    order: 1;
}
}
Hope it works for you
Thanks



Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...