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