Page 1 of 1

CSS Question: How would I hide all player ELO?

Posted: 27 January 2024, 09:58
by grayjaket
Hey! Just looking for a way to hide all player elo in the CSS. Tried playing around with it for a while but couldn't figure it out at all! Thanks!

Re: CSS Question: How would I hide all player ELO?

Posted: 28 January 2024, 03:27
by xiongmao1298
If it's inside games, something like this should work most of the time?

Code: Select all

.player_elo_wrap {
   display: none !important;
}

Re: CSS Question: How would I hide all player ELO?

Posted: 28 January 2024, 09:31
by grayjaket
That's perfect, thanks so much!