Can i remove the padding between the title and the ML Quantity, or even make it way less.
URL is www.lunalucente.com
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:
Go to Online Store
Edit Code
Find theme.liquid file
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.
From your Shopify admin, navigate to Online Store > Themes.
Find the Testament theme and click Actions > Edit code.
In the Assets folder, navigate to the product.css file.
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
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.