• Resolved Toyin

    (@jnr4u2)


    Hello,

    I want to change the color of the figures shown in the product add on section of the page. It seems it’s default color is set to white and it can’t be visible on a white background

    I’ve used these codes
    .product-addon-totals dt:nth-child(1) { color:red;}
    .product-addon-totals dd:nth-child(2) { color:red;}
    .product-addon-totals dt:nth-child(3) { color:blue;}
    .product-addon-totals dd:nth-child(4) { color:blue;}

    But it changes just the text color not the amount color itself.

    Thanks in advance

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    Try with:

    .amount {
    color: YOUR COLOR !important;
    }

    You have another color for amount set to “color: transparent;”, that why you need “!important”.

    Both amounts will have the same color. So, if you like them with different colors, you need to assign a CLASS to every one and set colors on Css. That needs some coding ^^

    Good luck!

    Thread Starter Toyin

    (@jnr4u2)

    Thanks a bunch. It worked

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change color of Product add on totals’ is closed to new replies.