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

Solved

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

Dtrachtman
Excursionist
24 0 11

On this page, I want to reduce all the space under the price and remove the <hr> (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

Untitled-2.jpg

Accepted Solution (1)

Nick_Marketing
Shopify Partner
1487 336 465

This is an accepted solution.

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

 

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

 


Result:

2022-06-06 11_02_28-Window.png



Nick | Ecommerce & Marketing Technology Consultant | Toronto, CANADA
- For consulting work availability, please send me a Private Message or submit a ✍️Contact Form.
- For FREE Shopify Tutorials, Subscribe to my YouTube channel (▶️ Ecommerce TV).

View solution in original post

Replies 2 (2)

Nick_Marketing
Shopify Partner
1487 336 465

This is an accepted solution.

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

 

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

 


Result:

2022-06-06 11_02_28-Window.png



Nick | Ecommerce & Marketing Technology Consultant | Toronto, CANADA
- For consulting work availability, please send me a Private Message or submit a ✍️Contact Form.
- For FREE Shopify Tutorials, Subscribe to my YouTube channel (▶️ Ecommerce TV).
Dtrachtman
Excursionist
24 0 11

perfect!! thanks a lot.