Image with text: Show text-image order on mobile
When using Image with text, the mobile display order is image then text (image-text) regardless of the position on desktop. To reverse that order and show text-image format, you can use this code snippet.
Example:
Code:
/* -- code to reverse image and text order on mobile -- */ @include at-query($max, $small) { .homepage-double { display:flex; flex-direction: column-reverse; } } /* - end - */
Where do I add the code?
Use this link to learn where exactly to add this code snippet: