How to adjust Cart page element slightly

Hi,

How would I go and adjust the Cart Totals box so that the Shipping Methods would appear a little nicer under the Shipping text, not next to it to the right? And then make them align "left" not "right". It would certainly look nicer.


Comments

  • Hi,

    1) Unfortunately, there is no option to extend the "Shipping" text to full width, so the methods would go under it because of the WooCommerce cart construction.

    2) You can align the text to left with the following CSS code:

    .woocommerce-cart .woocommerce-shipping-totals td{
       text-align: left!important;
    }
    

    Best regards

  • Thank you. So this is totally Woocommerce related in the cart? Is there really no way to modify the layout of the cart?

  • Yes, it is related to Woocommerce. It can be modified but require file modifications in which we do not provide support, and you should contact your web developer regarding this.


    Best regards

Sign In or Register to comment.