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

Result title headings

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #19857
    axelibarrouleaxelibarroule
    Participant

    Hello there,
    Apparently, by default the Result title Style comes from my h3 heading style.
    My proble is that I’ve set the h3 heading style in my css as

    [code]h3:before {
    counter-increment: my3counter;
    content:counter(my3counter)".\0000a0";
    counter-reset:my4counter
    }
    h3.nocount:before {
    content: none;
    counter-increment: none;
    }
    h3 {
    font-size: 14pt;
    text-transform:lowercase;
    counter-reset:my4counter;
    color: rgba(240,73,47,1)
    }
    [/code]

    This makes my Result titles come out numbered. (see image attached)

    Is there a way either to change the Result title style or make the numbering code ignore the result titles?

    Thank you very much!

    #19859
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Yes, it is possible, this small custom CSS code should do the trick:

    [html].asp_r h3:before {
    content: "";
    }[/html]

    This is higher specificity as the global h3 rule you have there, so it will only apply on the live search results, and override the counter there.

    #19865
    axelibarrouleaxelibarroule
    Participant

    thank you veeeery much!

    #19866
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Result title headings’ is closed to new replies.