Page 1 of 1

Fix player board to bottom of screen

Posted: 24 July 2025, 07:32
by LiatKolink
I modified some CSS so that your own player board is fixed to the bottom-left corner of the screen. It does not affect mobile phone screens; but if you want to, you can if you modify the @media parameter, or if you remove that part of the snippet altogether. One thing to note is that you'll have to modify the #twc-player-area-95962749{ section, replacing my user ID for yours. You cannot see your own ID yourself without F12 as far as I know, but an easy workaround is asking someone to check your profile, and your ID will be in the URL.

Code: Select all

/* The White Castle */
@media (min-width: 900px) {
   #twc-player-area-95962749{
      position: fixed;
      bottom: 30px;
      right: 10px;
      z-index: 99;
   }
   #twc-player-areas, #twc-game{
      justify-content: left;
      position: relative;
      left: 10px;
   }
}