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

Reply To: Filters Title Customization

#28967
Ernest MarcinkoErnest Marcinko
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;
}