How to change the woocommerce price filter color

Asked by: chris11
Date:
Viewed: 367
Answers: 1
  • 0

Hi,

How can I change the woocommerce price filter color?

Answers

Answer by: ChristianKovats

Answered on: 28 Jan 2023

  • 0

I believe you need to change the border and the background like this:

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
border: 2px solid #1ab2ff;
}

span.ui-slider-handle.ui-state-default.ui-corner-all {
background: #0088cc;
border: 1px solid #0088cc;
}

 

for custom themes it can be different.

Please log in to post an answer!