Ernest, thank you so much for your answer.
Actually, I need to avoid the h3 results from counting. I assigned counters to my heading.
Like this:
h3:before {counter-increment: my3counter; content:counter(my3counter)".\0000a0"; counter-reset:my4counter}
h3.nocount:before {
content: none;
counter-increment: none;
}
h3 {
font-size: 14px;
color: #000;
text-decoration: underline;
text-transform:lowercase;
}
The problem is that my search plugin’s results are also counting. So the results titles are preceded by 1., 2., 3. I was wondering if I could easily avoid that from happening.
thanks again!