Was wondering if there is any way to reduce the padding between product title and description? You now these are in the same section and there is no other tool for reducing padding rather than top and bottom padding but this one and actually the space between photo and title as well doesn’t really have ways to be reduced. Searched other solution and code here but nothing works, I just want to reduce it by half.
Thank you. Im not sure if this enough. This is for the mobile screen only?
This code is for mobile. Try this one.
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:
And Save.
@media only screen and (max-width: 749px) {
.product__description.rte.quick-add-hidden {
margin-top: 0px;
}
}
I used this one and seems it worked .product__accordion.accordion.quick-add-hidden {
margin-top: 0 !important;
}
.product__text.inline-richtext {
margin-top: 0 !important;
}
.product__title {
margin: 0 !important;
}