reduce product title padding

helloo,

Is there a way to reduce the spacing between the product title and price? pic attached for reference.

URL:

pass:

test!!

2 Likes

Hi @vvyan ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

  • Here is the solution for you @vvyan
  • Please follow these steps:

  • Then find the base.css or theme.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
.product__info-container>*+* {
    margin-top: 0.5rem !important;
}
.product__text.caption-with-letter-spacing+.product__title {
        margin-bottom: 0 !important;
}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.
1 Like