2. Doesnt change anything still doesn't disappear
![]()
3.Perfect 10/10
$config['highscores_outfit'] = false;
$config['characters']['outfit'] = false;
2. Doesnt change anything still doesn't disappear
![]()
3.Perfect 10/10
$config['highscores_outfit'] = false;
$config['characters']['outfit'] = false;
I would be glad if you guys answer my questions
1.How to hide Sample vocations?
2.Hide these ugly monsters because they mess all this layout.
![]()
3.Where can i find text alignment? Example
![]()
$config['highscores_ids_hidden'] = array(1, 2, 3, 4); // ids of your samples characters
$config['online_outfit]' = false;
.title {
text-align: center;
}
1.Works perfect 10/101. Go to your database, table players. Check id field of every sample vocation and save it in config.local.php under highscores_ids_hidden.
Example:
Code:$config['highscores_ids_hidden'] = array(1, 2, 3, 4); // ids of your samples characters
2. Set 'online_outfit' => false in config.local.php
Example:
Code:$config['online_outfit]' = false;
3. You need to open default.css file, and edit this section:
Code:.title { text-align: center; }
$config['online_outfit']= false;
.title {
height: 27px;
margin: 0px;
padding: 10px 0px 0px 12px;
font-size: 15px;
color: #FFFFFF;
}
text-align: center;
2. Doesnt change anything still doesn't disappearSorry I did some small mistake in 2.
It should be like this:
Code:$config['online_outfit']= false;
3. Search for this in default.css:
Code:.title { height: 27px; margin: 0px; padding: 10px 0px 0px 12px; font-size: 15px; color: #FFFFFF; }
It's the class for that Home or Hi.
You can add into it following line:
Code:text-align: center;
Then your text will be in the middle.