How to minimize space under product description

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:

  1. Go to Online Store->Theme->Edit code
  2. 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

This worked like a charm! Thank you so much.