Home › Forums › WoodMart support forum › align the image to the center on mobile › Reply To: align the image to the center on mobile
October 17, 2024 at 3:31 pm
#605815
Aizaz Imtiaz Awan
Keymaster
Hello,
Add the classes desktop-row and mobile-row to your rows, and this CSS will hide the desktop row on mobile and show the mobile row.
Please try adding the following Custom CSS in the desktop Custom CSS area under Theme Settings >> Custom CSS.
/* Hide on desktop */
.mobile-row {
display: none;
}
Add the below Custom CSS code to Theme Settings > Custom CSS > Custom CSS for Mobile section:
/* Show on mobile */
.desktop-row {
display: none;
}
Best Regards