Hello everyone. I was able to customize many things by myself luckily however I cannot change the font size of the products on mobile view. How can I make it a bit bigger?
Password : Yaggie95100
Hello everyone. I was able to customize many things by myself luckily however I cannot change the font size of the products on mobile view. How can I make it a bit bigger?
Password : Yaggie95100
hello @Regntjejen
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
@media screen and (max-width: 768px) {
#shopify-section-collection .grid .grid__item {
width: 100%;
}
#shopify-section-collection .grid .grid__item .grid-view-item__image-wrapper.product-card__image-wrapper {
max-width: 100% !important;
}
#shopify-section-collection .grid-view-item__image {
max-width: 100% !important;
max-height: 100% !important;
}
}