Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Filters Title Customization › Reply To: Filters Title Customization
August 15, 2020 at 12:09 pm
#28967
Keymaster
Thanks!
I’m seeing this custom CSS causing the issue:
label {
font-size: medium;
color: black;
display: contents!important;
}
The problem is the third line. You can either track down this rule, or use this custom CSS to override that:
.asp_w.asp_s label,
.asp_w.asp_sb label {
display: inline !important;
}