Hi graf,
This should be possible by adding a bit of your own custom CSS. With flex styling you can set the order of items within a flex container. For example:
@media screen and (max-width: 600px) {
.fdm-item-panel {
display: flex;
flex-direction: column;
}
.fdm-item-title {
order: 1;
}
.fdm-item-content {
order: 2;
}
.fdm-item-price-wrapper {
order: 3;
}
}
Just make sure to change the media query to the size screen that you actually want for mobile.
-
This reply was modified 2 years, 5 months ago by
jaysupport.