Tagged: Cart, woocommerce
hi. how can i set the table-width of woocommerce cart (where’s the total-amount shown) to 100%???
Hi chrisholemar!
Try with this code, add it to the Quick CSS:
.cart-collaterals .cart_totals{
width: 100%;
}
Regards,
Josue
hi josue. great thx. it works!
one question more ;-)
how i will get the amount (in the right row) “aligned left” (now the amounts are aligned right, the selection of shipping-method left)
THX, Chris
Hi Chris,
Can you post a link to your website please?
Regards,
Josue
Hi!
Use following css code
.cart-collaterals .cart_totals table tr td {
text-align: left;
}
Regards,
Peter
great! thx a lot!