Adding spacing between list and sale "prices"?

EDIT: Nope! The code isn’t below. I’m not sure where this template lives…

https://14point7solutions.com/collections/all

Any ideas how to space these better?

I think this is the code…

{{ product.variants.first.price | money }} {% if product.variants.first.compare_at_price > product.variants.first.price %} {{ product.variants.first.compare_at_price | money }} {% endif %}
1 Like

@147Solutions

yes, please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.single-product__content .price .main-price.discounted {
    margin-left: 5px;
}