Hi everybody,
I have the problem with WooCommerce that at checkout and at shopping cart table is displayed with two different colors. Every second line has the background color. But it should be uniform #111111. In the private section I have deposited a backend access and screenshots.
I´m thankful for every tipp! :-)
Thanks and best regards from Germany
Lars
Ok, here the screenshots for everybody, because i hope for help ;-)
https://eiskirch.cloud/index.php/s/bXKcLgj5rbR4JnE
https://eiskirch.cloud/index.php/s/w8HZGSst2ao7aC6
/* WooCommerce no grey font 2nd grid row cart+checkout */
.woocommerce-cart-form tr:nth-child(2n),
.woocommerce-checkout tr:nth-child(2n) {
color: #111111;
}
Hey rob2701,
thank you very much for your answer. I´ve to solve a misunderstood… I mean not the font, i mean the complete background from the table. At the moment the grid change between black and grey every 2nd grid. I want to make the grid background uniform black, also #111111
Regards from Germany
Lars
Ha!
You got it. Little change and i work. Thank you again!
/* WooCommerce no grey font 2nd grid row cart+checkout */
.woocommerce-cart-form tr:nth-child(2n),
.woocommerce-checkout tr:nth-child(2n) {
background: #111111;
}
Sorry for misunderstanding. I had just done the fonts myself and just “assumed” you had the same, without looking at the pics. :-)
Glad you found it!