Change the order of blocks for mobile only
Hi,
I have a question regarding the way blocks are being displayed on mobile. I'm using the BeDietitian demo and right now the text and images on mobile look as followed:
text
image
image
text
text
image
image
But I would like to change the order for mobile only, so you get
image
text
image
text
While keeping the order like this for the desktop version. How can I do this? The URL is greenhouseonwheels.net
Thanks,
Mark
I have a question regarding the way blocks are being displayed on mobile. I'm using the BeDietitian demo and right now the text and images on mobile look as followed:
text
image
image
text
text
image
image
But I would like to change the order for mobile only, so you get
image
text
image
text
While keeping the order like this for the desktop version. How can I do this? The URL is greenhouseonwheels.net
Thanks,
Mark
Comments
Will there be an option to do this in the (near) future?
Thanks.
We asked someone else to see if he could do it and he fixed it by adding this to style.css:
.home .section.mcb-section:nth-child(odd) .one-third{ float: right; padding-right: 0 !important; padding-left: 20px !important;}
@media screen and (max-width: 767px) {
.home .section.mcb-section:nth-child(odd) .two-third h2{ text-align: left !important; }
.home .section.mcb-section:nth-child(odd) .two-third p{ text-align: left !important; }
}
I hope this might help others as well.