Home Forums WoodMart support forum Changing color of arrows

Changing color of arrows

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #598291

    nikkylikescoffee
    Participant

    Hi

    May I know how I can change the color of slider arrows in the Quick View (see screenshot)? Thank you.

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

    Luke Nielsen
    Keymaster

    Hello,

    Define the code below in Theme Settings -> Custom CSS, cleat the cache and check how it works.

    .product-quick-view .woocommerce-product-gallery .wd-arrow-inner {
        background-color: #333;
        color: #fff;
    }
    
    .product-quick-view .woocommerce-product-gallery  .wd-arrow-inner:hover {
        background-color: #333;
        color: #fff;
    }

    Kind Regards

    #599096

    nikkylikescoffee
    Participant

    Okay this is great. But the background/arrow is a bit big, covering parts of the photo. Is it possible to make the size the boxed background and arrow inside about 80% of the current? So it isn’t so obstructive. Thank you.

    #599097

    nikkylikescoffee
    Participant

    Also, while we are at it, is it possible to make the background round instead of a square? Thank you!

    #599203

    Luke Nielsen
    Keymaster

    Hello,

    You can disable the bg color by removing those values – https://take.ms/4XoP3

    To make buttons rounded, just add to the above code the border-radius: 15px; property.

    Kind Regards

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