- Make a WooCommerce - Checkout Template and add the Elements: Notice, Breadcrumbs, Checkout Customer Details, and Checkout Order Review.
- On the Content Tab for Checkout Order Review >> Order Review >> Padding, enter 0 for left and right padding.
- Notice the Product/Price in the table now has zero padding on the left and right; but the Subtotal/Price and Total/Price do not.
The Subtotal/Price and Total/Price require different selectors.
Expected: The padding should apply to the Subtotal/Price and Total/Price lines too, for consitency.
Example:
#brxe-xyz .shop_table tbody td,
#brxe-xyz .shop_table tfoot th,
#brxe-xyz .shop_table tfoot td {
padding-right: 0;
padding-left: 0;
}