Okay, you're right. For the banner issue I was refering to the wrong file. I was looking at html output and not at the php files. The section I'm refering to is located in
login/inc_loggedin.php. But adding it to css overides that setting that's true. So both ways should work fine.
I was indeed using a different version of the file for the connection info... I've noticed a wrong packaged b3connect.php.multidb in version 1.3.2. It's corrected in version 1.3.3. So pls download version 1.3.3 and use the template inthere.
Or, if you want to fix your current file quickly replace this:
// EDIT YOUR CONNECTIONINFO BELOW THIS LINE!
$xlrdatabase = "multi";
//Gamenames are used in the navigation. Make sure they correspond with the connectioninfo below!
$gamename_1 = "UO";
$gamename_2 = "COD";
$gamename_3 = "COD2";
By this:
// EDIT YOUR CONNECTIONINFO BELOW THIS LINE!
$xlrdatabase = "multi";
//How many servers do we have down here
$numservers = 3;
//Gamenames are used in the navigation. Make sure they correspond with the connectioninfo below!
$gamename[1] = "UO";
$gamename[2] = "COD";
$gamename[3] = "COD2";