Home Forums Pro Themes Clean Commerce Pro Customizing theme color change

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #69567
    itsme2018
    Participant

    Hi

    I have customized the orange used for links to green, How do I customize the few oranges that somehow seem to persist as shown in link below
    https://imgur.com/a/6pwuz

    Thanks for your help

    #69576
    wensolutions
    Keymaster

    Hello @itsme2018,

    To change the color and remove the sale tag use below given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    #featured-carousel .slick-next.slick-arrow {
        background-color: #8BC34A;
      }
    
    #header-nav li.current-menu-item a, #header-nav li.current_page_item a{
        color: #8BC34A;
    }
    
    .woocommerce ul.products li.product span.onsale {
        display: none;
    }

    Hope this helps.

    Best Regards!!

    #69594
    itsme2018
    Participant

    Thanks for your speedy reply.

    The CSS corrected the carousel arrows, but the header menu remained unchanged and the sale filter icon disappeared. I just wanted the orange colors changed to green.

    Regards

    #69615
    wensolutions
    Keymaster

    Hello @itsme2018,

    As for the header menu, the CSS worked when we tested it locally. Since it is not working for you please post your site URL so that we can provide a precise fix on this.

    Now to change the color of the sale tag replace the code given below:

    .woocommerce ul.products li.product span.onsale {
        display: none;
    }

    With this code:

    .woocommerce ul.products li.product span.onsale {
        background-color: #9db51f;
    }

    Hope this helps.

    Best Regards!!

    #69660
    itsme2018
    Participant

    As requested, I have attached the URL below

    http://www.greatpcparts.com

    Thanks for speedy assistance so far.

    #69681
    wensolutions
    Keymaster

    Hello @itsme2018,

    When we inspected your site URL we could not find the top left menu so we are unable to provide any fix.

    So please set the top left menu and let us know.

    Thank you.

    Best Regards!!

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