This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Form field color

#40631
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

1) Make sure to remove that filter first, I assume it is a taxonomy term filter. If you want to restrict the results to that category only, then check this documentation.

2) You may need to use custom CSS for that:

.asp_select2-selection,
span[class*=asp_select2-selection],
.asp_select2-search__field,
.asp_select2-search__field::placeholder,
div.asp_w.asp_sb.searchsettings input[type=text].asp-number-range,
div.asp_w.asp_sb.searchsettings input[type=text].asp-number-range::placeholder {
    background: red !important;
    color: white !important;
}

.asp_select2-selection,
span[class*=asp_select2-selection],
.asp_select2-search__field,
div.asp_w.asp_sb.searchsettings input[type=text].asp-number-range {
    border: 1px solid black !important;
}