• 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!

Solved Editing Znote Metro Blue Layout

Yatsu

I'm nobody.
Joined
Feb 12, 2016
Messages
27
Reaction score
2
Hello, Im editing Metro Blue Layout for my liking. And I've question how I can stretch this white page:
2031392.png

Thanks in advance.
 
First navigate into overall folder and open header.php.

Then remove the sidebar:
Code:
<div class="sidebar">
    <?php
     if (user_logged_in() && is_admin($user_data)) include 'layout/widgets/Wadmin.php';      
        include('layout/widgets/topplayers.php');
        include('layout/widgets/serverinfo.php');
        include('layout/widgets/serverstatus.php');
    ?>
</div>

After that, enter the css folder and open style.css and edit the width of content to 100%.
Code:
.content {
  float: left;
  margin: 5px auto;
  width: 100%;
  min-height: 50px;
}

You're done!
 
Back
Top