• Resolved necksb1

    (@necksb1)


    Is it possible to add a badge or emoji after the first-ranked user name in the Ranking?

    • This topic was modified 6 years, 7 months ago by necksb1.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author AntoineH

    (@antoineh)

    I think you can do it it with CSS with the :after pseudo element. See examples here. To select just the first ranked player, use the :first-child selector on the table row.

    Thread Starter necksb1

    (@necksb1)

    Could you tell me what line of css code I use before :first-child:before {
    content: ” ? “;?

    • This reply was modified 6 years, 7 months ago by necksb1.
    Plugin Author AntoineH

    (@antoineh)

    e.g.

    .pool-ranking tr:first-child td.user-name:after {
      content: " (first place)";
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Bagde or Emoji ranking’ is closed to new replies.