Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hey,
Can you please help me in making the spacing of the stitch count text block equal between the size variant block and the description block on the product page?
Elaborating on it, at the moment the padding and margin between the stitch count text and size selector is less, whereas the padding and margin between the stitch count text and the description is more. I want it to be equally spaced between both of them.
I am using the free Dawn 2.0 theme on Shopify. If you need the base.css file or the theme.liquid file, please let me know.
Here is the website preview link: https://p31wswbe0nr3mp1x-58147176561.shopifypreview.com/products_preview?preview_key=ad92968b60c6c86...
Thanks a lot!
Solved! Go to the solution
This is an accepted solution.
Hello @shaanrevery
Go to online store > Edit theme code > base.css > Insert the code at the bottom of this file "base.css" .
body .product__info-wrapper .product__info-container .product__description {
margin: 1rem 0;
}
This is an accepted solution.
Hello @shaanrevery
Go to online store > Edit theme code > base.css > Insert the code at the bottom of this file "base.css" .
body .product__info-wrapper .product__info-container .product__description {
margin: 1rem 0;
}
Thanks a lot. You're a lifesaver!