Tagged: Buttons, Cart, order, woocommerce
Hi,
Is there a simple way to swap the two buttons in the cart?
Now you have the ‘proceed to checkout’ button on the left, and the ‘update cart’ button on the right.
I would like them to be reversed, as some people already complained hitting the wrong button ;-)
I have been looking at the woocommerce code, but not sure if this is edited there, or it is something of the Enfold theme.
thanks!!
rob
Hi RobWu!
Add this to your custom CSS.
#top .avia_cart_buttons > a:first-child {
float: right;
}
Regards,
Elliott
Great!! :-)
Thanks guys, your support is top notch!!
rob
edit: with your code example, I found that it can also be done with:
#top .actions [name=’update_cart’].button {
float:left;
}
That will move the update cart button to the left, next to the coupon button.
one learns every day ;-)