Change color of "Add to cart" button?

Home Forums Omega Change color of "Add to cart" button?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #5237
    henrik
    Participant

    I’m using the shopping theme (with WooComerce) and wants to remove the pink color of the “Add to cart” button, but I can’t find a way to do that.
    In Apperance-customize-colors I have changed colours to grey, black and blue, but this will not change the color on the “Add to cart” button.
    Help…?

    #5247
    han
    Keymaster

    Hi Henrik,
    Woocommerce overrides the theme style. But You can change the button color easily with CSS. Please check below example

    .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
        background-color: #000;
    }
    
    .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
        background-color: #333;
    }

    We’ll provide more options when we release the Pro version

Viewing 2 posts - 1 through 2 (of 2 total)

You must login to reply to this topic.