Archived topic
How to style the purchase summary table on the checkout page
1 reply · Started by escueladireccion on July 31, 2021
Viewing posts 1–2 of 2
Hi,
I have a question about styling that I am trying to solve. I want to give some color to the table with the summary of the purchase on the checkout page. I need to change the background color of the border and the headers.
How would be this possible?
Again, many thanks in advance.
Hi there,
you can use some CSS
For example - change the colors of the table headings:
.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table th {
background-color: #ff0000;
color: #ffffff;
}
and/or add a color and border to the table cells:
.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td {
border: 1px solid #000;
background-color: #00ff00;
}
This archived topic is closed to new replies.