Forums Forums Search & Filter Pro How to change color?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Anonymous
    #256809

    How to change color? I want to change that blue color of slider to something else?

    Trevor
    #256872

    You would need to make sure the specificity is correct. This is our standard slider CSS for that color (I believe):

    .searchandfilter .noUi-connect {
        background-color: #526E91;
    }

    So you would need custom CSS, something like:

    .searchandfilter[data-sf-form-id="1234"] .noUi-connect {
        background-color: #ccc;
    }

    Where you would change the ID to match that of your form, and the color to what you want it to be.

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