Hi, is anyone able to help me why my products look like this on the mobile version? I would like the photo to be bigger and the text to fit in 1-2 lines, not like this… The product card is extremely narrow.
123
Hi, is anyone able to help me why my products look like this on the mobile version? I would like the photo to be bigger and the text to fit in 1-2 lines, not like this… The product card is extremely narrow.
123
Did you add custom code to modify this section? The default section of the theme will not appear like that.
Hmmmm, it looks like it is a padding issue. You can place this at the bottom of your base.css file:
@media screen and (min-width: 650px) {
.card.card--standard.card--media {
padding-top: 0px !important;
padding-left: 0px !important;
}
.full-unstyled-link {
font-size: 15px !important;
}
}