hi folks,
I am looking to minimize the height between the product picture and the description
We are using the warehouse template
Here is the kink to the above product:
https://theaerialstore.com/collections/core-kites/products/core-xr-pro-ulra-high-performance-kite
Thanks to everyone
Tom
1 Like
Hi Watersports,
To minimize the height between the product picture and description in the Warehouse template on Shopify:
Go to “Online Store” > “Themes” in your Shopify admin.
Click “Actions” → “Edit code.”
Locate the product template file (e.g., product.liquid).
Find the CSS styles controlling spacing (e.g., .product-single__photo, .product-single__description).
Adjust margin or padding, like:
.product-single__photo {
margin-bottom: 10px;
}
.product-single__description {
margin-top: 10px;
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
1 Like
Hi @watersports
Check this one. Let meknow if its not enough thanks!
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (min-width: 641px){
.card {
margin-bottom: 0px !important;
}
.card__header {
padding: 0px !important;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like