remove padding

Can i remove the padding between the title and the ML Quantity, or even make it way less.

URL is www.lunalucente.com

Hey @lunalucenteskin

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello @lunalucenteskin
Sure, You need to add css for it.

  1. From your Shopify admin, navigate to Online Store > Themes.

  2. Find the Testament theme and click Actions > Edit code.

  3. In the Assets folder, navigate to the product.css file.

  4. Add the following css code at the end

.main-product__block.main-product__block-custom_text {
margin-top: 10px;
}

yes you can remove the spacing just go to
online store
edit code
custom.css
and paste the code in it at the bottom

.main-product__block.main-product__block-custom_text {
    margin-top: 0;
}

Hello @lunalucenteskin

Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> main.css
add this at the end of the file.

.main-product__block + .main-product__block {
margin-top: 10px;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

Hello @lunalucenteskin

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.main-product__block-custom_text { margin-top: unset !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.