I updated the woocommerce .php file woocommerce/templates/cart/cart-totals.php today because the shipping totals were not being calculated in the shopping cart page of my site. When you put in a state and zip code, nothing would happen. When I updated this file, it moved everything below “Cart Totals” in the shopping cart to the right so the numbers were being cut off. To fix this, I added this to my stylesheet:
.woocommerce-page .cart-collaterals .cart_totals table th, .woocommerce-page .cart-collaterals .cart_totals tr td {
padding: 0px !important;
}
This pushed everything over to the correct spot, but now the same issue is happening with the shipping calculator not working. Does anyone have any idea why this is happening and how to fix it? This is my shopping cart page:
http://www.mirrixlooms.com/cart/
Thank you!