Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Form field color › Reply To: Form field color
December 22, 2022 at 3:06 pm
#40631
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;
}