Created
July 4, 2017 08:23
-
-
Save conschneider/f795345aa197aac0f7061c61525287f8 to your computer and use it in GitHub Desktop.
WooCommerce Product Add Ons - How to customise "Grand total" and "Options total"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Options Total*/ | |
.product-addon-totals dt:nth-child(1) { color:red;} | |
/*Options Total Sum*/ | |
.product-addon-totals dd:nth-child(2) { color:red;} | |
/*Grand Total*/ | |
.product-addon-totals dt:nth-child(3) { color:blue;} | |
/*Grand Total Sum*/ | |
.product-addon-totals dd:nth-child(4) { color:blue;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment