I want To Reduce Size Of Product On Home Page
My URL driptrove.com
Want Like This ![]()
A user seeks to reduce the size of product images displayed on their homepage at driptrove.com. An attached screenshot illustrates the current oversized product display on mobile devices.
Proposed Solution:
Technical Details:
The suggested CSS code targets .product-row .product-grid--item elements and sets max-width: 150px within a media query for smaller screens.
Status: The discussion appears resolved with a specific CSS solution provided, though implementation confirmation is pending.
Add This Css in Your theme.css File
@media screen and (max-width:767px){
.product-row .productgrid--item {
max-width: 150px;
}
}