Hi, I am using the Refresh Theme.
On desktop, I have an “Image with Text” where the text is first.
However, there is no option to make the text above the image, when switching to the mobile version.
What code do I need to add please?
Hi, I am using the Refresh Theme.
On desktop, I have an “Image with Text” where the text is first.
However, there is no option to make the text above the image, when switching to the mobile version.
What code do I need to add please?
@zoose - can you please share your website url?
Hi @zoose
You can do that by adding this CSS code at the bottom of your page
@media screen and (max-width: 600px) {
.image-with-text .grid {
flex-direction: column-reverse;
}
}
Thank you!