Fix player board to bottom of screen

Forum rules
Please DO NOT POST BUGS on this forum. Please report (and vote) bugs on : https://boardgamearena.com/bugs
Post Reply
LiatKolink
Posts: 13
Joined: 01 July 2024, 05:10

Fix player board to bottom of screen

Post 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;
   }
}
Post Reply

Return to “The White Castle”