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
July 5, 2022 at 2:38 pm
#38317
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.