Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1200326

    I have changed the color of product prices on my webpages using the following CSS (from red into green color):
    p.price .woocommerce-Price-amount.amount{
    color:#719430!important;
    }
    #top.single-product .price span {
    color: #719430!important;
    }
    However, the price separator which is used between price ranges of a product with variations still is red. Example page: https://www.tretroller-laden.de/shop/marke/yedoo/yedoo-wolfer/
    Could you please provide me with a CSS code which turns also the separator into green (on single product page and product archive)?

    Thanks!

    #1200474

    Hey stofson,

    Please try this CSS as well:

    .woocommerce-variation-price ins:before {
      color: #719430!important;
    }

    Best regards,
    Rikard

    #1200643

    Hi Rikard,

    thanks for your answer. It works, however only on the single product page. Do you have another CSS Code which turns the separator green also on the shop/archive page?

    Thanks again!

    #1200649

    Hi stofson,

    Can you try adding this CSS code as well:

    #top.archive p.price {
        color: #719430 !important;
    }

    Best regards,
    Nikko

    #1200669

    yay!
    Great job, it works. Thanks for helping me out on this!

    #1200732

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change color of separator between price range of product variations’ is closed to new replies.