Checkoutpage

edited April 3 in WooCommerce

Hey,


how do I change the font size in the checkout page?

I'd like to make the sum ("Gesamt") bigger and the tax-text smaller ("inkl. 19%" etc.). Or at least change the order.

The website is lubu-catering.de

Thanks!

Comments

  • Hi,

    Please try the following CSS code:

    .woocommerce table.woocommerce-table--order-details tfoot tr:nth-child(3) .woocommerce-Price-amount{
     font-size: 2em;
    }
    .woocommerce table.woocommerce-table--order-details tfoot tr:last-child .woocommerce-Price-amount{
     font-size: 0.8em;
    }
    

    Put it in Betheme -> Theme options -> Custom CSS & JS -> CSS.


    Best regards

Sign In or Register to comment.