Learn how to customize BrainKing's view layer and share your CSS experiences.
Useful links Wikipedia - for general information on what CSS is, why it is useful, and a short introduction on how to use it. W3Schools - for a tutorial and a reference on CSS. W3C - for detailed and advanced information for those who are interested. CSS Zen Garden - for some trickery and demonstration of what is possible with CSS
/* There are always waiting games and tournaments anyway */ /* so why display the number? */ td.menutd a[href=WaitingGames]+span.rednumber { display: none } td.menutd a[href=Tournaments]+span.rednumber { display: none }
/* Left hide side links I never use */ td.menutd a[href=Friends] { display: none } td.menutd a[href=Enemies] { display: none } td.menutd a[href="PlayerList?a=ap"] { display: none }
/* Make the left hide side column smaller */ #menu-column { background: #e0e0e0; margin-bottom: 10px; padding: 6px; } /* Outcomment original line */ td.menutd { font-size: 80% }