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

Reply To: Unwanted 0.1. before the search results

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Unwanted 0.1. before the search results Reply To: Unwanted 0.1. before the search results

#38317
Ernest MarcinkoErnest Marcinko
Keymaster

Thanks!

This CSS code is causing the issue:

h3:before {
    counter-increment: h3;
    content: counter(h2) "." counter(h3) ". ";
}

It is too generic, and applies to all header tags.
If you can’t remove or correct it, then try this additional custom CSS to override it for the search results:

.asp_r h3:before {
    display: none !important;
}

That will resolve the issue.