Home › Forums › Lorina › Change border radius of product images › Reply To: Change border radius of product images
December 8, 2020 at 10:12 am
#12882
Andy
Keymaster
To remove the product border radius, add this to Customize > Additional CSS:
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
border-radius: 0;
}
The reason why the products on the main shop page don’t have the border radius is because you have CSS code from the Elementor plugin that is changing the border-radius to zero on that page, but not site-wide.