reblev
March 10, 2022, 9:12pm
1
Hi, I am using the Atlantic theme, and am wondering how to remove the large space between my product description, and where it says “reach out to us…” on all product pages. Linked below is an example.
https://hopsongrace.com/products/large-pillar-candle-anthracite-4x8
Hi @reblev ,
You can follow the instruction below:
Go to Online Store->Theme->Edit code
Asset->/theme.css->paste below code at the bottom of the file:
.product__text {
margin-top: 0!important;
}
.product__description .rte p:last-child {
margin: 0 !important;
}
.product__description .rte p:last-child br {
display: none !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
1 Like
reblev
March 11, 2022, 3:50pm
3
This worked like a charm! Thank you so much.