How can I change the text color in checkout page?

Hi,

Can you help me to modify the text that I have underlined in the attached image? The link for the checkout page is this: http://www.paneepace.it/web/checkout/

Thanks a lot.




Comments

  • Hi,

    Please, put the following CSS code in Betheme -> Theme options -> Custom CSS & JS -> CSS.

    .checkout table.shop_table th,
    .checkout table.shop_table td.product-name,
    .checkout #payment ul.payment_methods li label,
    .checkout table.shop_table tr.order-total .woocommerce-Price-amount{
       color: #6e2a36!important;
    }
    

    Thanks

  • Thank you very much, Phil! 🙏

    It works great.

  • One last thing: how can I change the color of the text on the "order placed" page instead?

    Thank you.



  • Please, use this code:

    .woocommerce-order-received table.shop_table th,
    .woocommerce-order-received table.shop_table td.product-name,
    .woocommerce-order-received table.shop_table td.product-name a,
    .woocommerce-order-received table.woocommerce-table--order-details tfoot tr:last-child .woocommerce-Price-amount{
      color: #6e2a36!important;
    }
    

    Thanks

Sign In or Register to comment.