Ryanp
October 3, 2024, 1:28pm
1
Hello - Looking to be able to change the spacing in all my components in my product page across the whole site from Mobile to Desktop.. In pixels so I can easily change them when needed. Will buy a coffee for anybody who can give me a solution. Link to product page - https://devildaves.com/products/dill-pickle-hot-sauce
Custom Line
Reviews
Product Title
Price
Variant
Desired Units
THANK YOU SO MUCH FOR ANY HELP!
Hello @Ryanp
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
.product product-info p, .product__title {
margin-bottom: 0 !important;
}
.product__info-container > * + * {
margin: 0.2rem 0 !important;
}
.product__info-container .product-form{
margin: 1.5rem 0 !important
}
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Ryanp
October 3, 2024, 1:48pm
3
Thank you. I would like to add a touch of space between Reviews and Product Title.. I tried adding but didnt work.. Do you have a suggestion please?
.product product-info p, .product__title {
margin-bottom: 0 !important;
margin-top: 1.8rem 0 !important
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
.product .product__title {
margin-top: 1.8rem 0 !important;
}
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Ryanp
October 3, 2024, 2:10pm
5
That didnt work unfortunately..
Ryanp
October 3, 2024, 3:19pm
6
Sir or Maam - The spacing is way too compacted and I cannot change anything but the Space between First line and Reviews.. Do you know how I can add more space after the reviews?
Sorry I did mistake please replace above code with this
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
.product .product__title {
margin-top: 1.8rem !important;
}
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.