• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

MyACC Loleslav Layout questions

henkas

Well-Known Member
Joined
Jul 8, 2015
Messages
993
Solutions
5
Reaction score
55
I would be glad if you guys answer my questions :D
1.How to hide Sample vocations?
2.Hide these ugly monsters because they mess all this layout.
Untitled.png

3.Where can i find text alignment? Example
Untitled.png
 
Solution
2. Doesnt change anything still doesn't disappear
Untitled.png

3.Perfect 10/10

That change I posted was for online page, for highscores and characters there are two other directives:
Code:
$config['highscores_outfit'] = false;
$config['characters']['outfit'] = false;
I would be glad if you guys answer my questions :D
1.How to hide Sample vocations?
2.Hide these ugly monsters because they mess all this layout.
Untitled.png

3.Where can i find text alignment? Example
Untitled.png

1. 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;
}
 
1. 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;
}
1.Works perfect 10/10
2.If i put $config['online_outfit]' = false; website is not oppening
This page isn’t working
localhost is currently unable to handle this request.
3.I cant find line like
.title {
text-align: center;
it doesn't exist.
 
Sorry 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.
 
Sorry 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.
2. Doesnt change anything still doesn't disappear
Untitled.png

3.Perfect 10/10
 
2. Doesnt change anything still doesn't disappear
Untitled.png

3.Perfect 10/10

That change I posted was for online page, for highscores and characters there are two other directives:
Code:
$config['highscores_outfit'] = false;
$config['characters']['outfit'] = false;
 
Solution
Back
Top