I'm not really a blogging person, but I strongly believe that sometime everyone has something to say which is more of a statement thatn invitation to discussion so the blog is more appropriate than forum thread.
This time I will speak about a joy of using custom CSS on TeamLiquid.
Many of you are using high resolution displays and fullHD is screen is probably already a standard. However TeamLiquid website is not really that wide and there is a lot of white space around the page. Luckily for us - there is always a way to toy with the appearance of a website because browsers - at least some of them - support both client side scripting and client side styling.
I'm using Opera so it is really for Opera browser. Also this solution is not really tested that much - it just works for me.
My goal was to force TeamLiquid website to be wide and not look to awkward.
First - you need to create a custom CSS file. Create an empty text file just about anywhere on your computer. Call it i.e. userTL.css
Than go to teamliquid.net (you are already here), click right mouse button and choose "edit site preferences". Then display tab. Then click "choose" and navigate to userTL.css file.
Now open the file with just about any text editor. Notepad will do.
Now copy/paste the following text there:
+ Show Spoiler +
body > table:first-child {
width: 100% !important;
}
body > table:first-child > tbody > tr > td > script + table {
width: 100% !important;
}
body > table:first-child > tbody > tr > td > script + table > tbody > tr > td:first-child + td {
width: 100% !important;
}
body > table:first-child > tbody > tr > td > script + table > tbody > tr > td:first-child + td table {
width: 100% !important;
}
#news_main {
float: left !important;
}
And here you go. We just forced teamliquid to be extra wide. It will mean that there is less scrolling going on. It is tempting to force sidebars to be wider but it will force me to make two columns in a sidebar which may look awkward.
Hopefully Enjoy.
If you don't like the change you can remove the CSS from the aboce mentioned display tab - or empty it's content. Either way.