0
votes

I am using:

  • WordPress version 4.7.1
  • Woocommerce version 2.6.12
  • The Retailer Theme version 2.1

When I add a Sale Price to a product the products below that particular item get pushed over. As seen here:

http://st-tropezhome.com/shop/product-category/decor/vases/

You can see I've added a Sale Price to the product "Vase Atacama 16″" and this causes the products in the row below to be pushed over to the right.

I've inspected these elements and am not seeing anything strange in the CSS that would cause this spacing issue.

1

1 Answers

2
votes

Setting the line-height on the del element which contains the old price works for me:

.price del {
    line-height: 1;
}