Site logo

[Resolved] Change Buttom for description and reviews on woocommerce product

Home Forums Support [Resolved] Change Buttom for description and reviews on woocommerce product

Home Forums Support Change Buttom for description and reviews on woocommerce product

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

    hello, I am trying to change the description and review buttom colors on the following page:

    https://strangegenetics.com/product/buttered-fruity-pebbles/

    #2493623
    Fernando
    Customer Support

    Hi Jeffrey,

    You can change the Button Color in Appearance > Customize > Colors > WooCommerce: https://docs.generatepress.com/article/woocommerce-overview/#colors

    To change the description color, try adding this through Appearance > Customize > Additional CSS:

    body.single-product .summary.entry-summary .woocommerce-product-details__short-description {
        color: #7ABF5E;
    }

    You can replace the color value in the code with what you prefer.

    #2493642
    Jeffrey

    Im still not able to find it , im trying to have the description and review areas on the page appear to not be grey

    #2493665
    Fernando
    Customer Support

    I see. Thank you for clarifying.

    Here are a couple of codes you can try:

    .woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) a {
        color: #7ABF5E;
    }
    
    .woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) {
        background-color: #FF0000;
    }
    
    .woocommerce div.product .woocommerce-tabs ul.tabs li:is(.active) a {
        color: #CCBFAA;
        
    }
    .woocommerce div.product .woocommerce-tabs ul.tabs li:is(.active) {
        background-color: #CCFFFF;
    }
    #2494909
    Jeffrey

    That fixed it thank you

    #2496727
    Fernando
    Customer Support

    You’re welcome, Jeffrey!

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.