Is it possible to change the order of the layout on the phone.
Because now you get 2 photo’s back to back. Does not look right
Hey studioinktvis,
You could create a second version of the section and change the order and use classes like this for each respective section so that the proper order that you desire appears on the respective device:
.only-mobile{
display: block !important;
}
.only-desktop{
display: none !important;
}
@media only screen and (min-width: 767px) {
.only-mobile{
display: none !important;
}
.only-desktop{
display: block !important;
}
}
Best regards,
Jordan Shannon
Did not think of that, thanks!
Hi,
No problem at all my friend. If you need further help please let us know here in the forums.
Best regards,
Jordan Shannon