How do I reduce the space and remove the <hr> under the price on Impulse theme?

On this page, I want to reduce all the space under the price and remove the


(only there, not the rest of the site). See attached. I am doing this because I also intend to make the price invisible, so that remaining space will be just the right amount.

thanks

You could try adding this CSS rule to the bottom of theme.css

.product-single__meta .hr--medium {
  display: none;
}

Result:

1 Like

perfect!! thanks a lot.