Home Forums WoodMart support forum single product page add to cart button colour

single product page add to cart button colour

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #241627

    chrisheth
    Participant

    could you guide me to how i change the add to cart button colour on a single product page

    thank you

    Attachments:
    You must be logged in to view attached files.
    #241681

    Hello,

    You can change the buttons globally in the Theme Settings > Styles and colors > Buttons.

    If you want to change the button on the product page only, add this code to the Theme Settings > Custom CSS > Global:

    body .btns-shop-light .single_add_to_cart_button{
    	color: black;
    }
    body .single_add_to_cart_button{
    background-color:red;
    }
    body .btns-shop-light .single_add_to_cart_button:hover{
    	color: black;
    }
    body .single_add_to_cart_button:hover{
    background-color:red;
    }

    Set the colors as per your needs.

    Best Regards

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