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

Geisor Layout Costum..

betoxz

Member
Joined
Dec 16, 2007
Messages
139
Reaction score
10
Location
Mexico, Monterrey
Hello well.. first for all thanks for reading my thread..
the problem is this..

geisorproblem1wh3.jpg
[/URL] [/IMG]

Well, this is an normal Layout from gesior the only thing modified is the header but what I really want to make like the ¨¨box¨¨ of information:blink: , this one....

geisorproblem2as4.jpg
[/URL] [/IMG]


Make ir a little bit less thinn..

like this for example..

geisorproblem3wx6.jpg
[/URL] [/IMG]

well you see like imagine the gray color is the part of all the black color of the right side...

in few word make it a little bit think like tibia.com..
look....
geisorproblem4bc5.jpg
[/URL] [/IMG]

if anyone know how to make it thin or anyother thing related to this topic I would be very GREATFULL...
really :)

well.. thanks for reading my threat.

For extra info:
this is my layout.php..

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250"/>
<meta name="description" content=""/>
<meta name="keywords" content="ots, <?PHP echo $config['server']['serverName']; ?>"/>
<meta name="author" content="Gesior"/>
<link rel="stylesheet" type="text/css" href="<?PHP echo $layout_name; ?>/default.css" media="screen"/>
<?PHP echo $layout_header; ?>
<title><?PHP echo $config['server']['serverName']; ?> - <?PHP echo $topic; ?></title>
</head>

<body>

<div class="container">

<div class="header"><?PHP echo ucwords($config['server']['serverName']); ?></div>

<div class="main_right">

<div class="padded">

<h1>Server Info</h1>
<?PHP
if($config['status']['serverStatus_online'] == 1)
echo '<font color="green"><b>Server ONLINE</b></font><br />Players Online: '.$config['status']['serverStatus_players'].' / '.$config['status']['serverStatus_playersMax'].'<br />Monsters: '.$config['status']['serverStatus_monsters'].'<br />Uptime: '.$config['status']['serverStatus_uptime'].'<br />IP: '.$config['server']['ip'].'<br />PORT: '.$config['server']['port'];
else
echo '<font color="red"><b>Server OFFLINE</b></font>';
?>
<br /><br /><br /><br /><br /><br /><br />
</div>

</div>

<div class="subnav">
<h1>News</h1>
<ul>
<li><a href="index.php?subtopic=latestnews">Latest News</a></li>
</ul>

<h1>Account</h1>
<ul>
<?PHP
if($group_id_of_acc_logged >= $config['site']['access_admin_panel'])
echo '<li><a href="index.php?subtopic=adminpanel"><b><font color="red">Admin Panel</font></b></a></li>';
if($logged)
{
echo '<li><a href="index.php?subtopic=accountmanagement"><b><font color="green">My Account</font></b></a></li>
<li><a href="index.php?subtopic=accountmanagement&action=logout"><b><font color="white">Logout</font></b></a></li>';
}
else
{
echo '<li><a href="index.php?subtopic=accountmanagement"><b><font color="white">Login</font></b></a></li>';
}
?>
<li><a href="index.php?subtopic=createaccount"><b><font color="white">Create Account</font></b></a></li>
<li><a href="index.php?subtopic=lostaccount">Lost Account Interface</a></li>
<li><a href="index.php?subtopic=tibiarules">Server Rules</a></li>
</ul>

<h1>Community</h1>
<ul>
<li><a href="index.php?subtopic=characters">Search Player</a></li>
<li><a href="index.php?subtopic=guilds">Guilds</a></li>
<li><a href="index.php?subtopic=highscores">Highscores</a></li>
<li><a href="index.php?subtopic=killstatistics">Last Deaths</a></li>
<li><a href="index.php?subtopic=houses">Houses</a></li>
<li><a href="index.php?subtopic=downloads">Download</a></li>
<?PHP if(!empty($config['site']['forum_link'])) echo '<li><a href="'.$config['site']['forum_link'].'">Forum</a></li>'; ?>
<li><a href="index.php?subtopic=team">Game Masters</a></li>
</ul>

<h1>Library</h1>
<ul>
<li><a href="index.php?subtopic=creatures">Monsters</a></li>
<li><a href="index.php?subtopic=spells">Spells</a></li>
<li><a href="index.php?subtopic=whoisonline">Who is online?</a></li>
<?PHP if($config['site']['serverinfo_page'] == 1) echo '<li><a href="index.php?subtopic=serverinfo">Server Info</a></li>'; ?>
<?PHP if($config['site']['download_page'] == 1) echo '<li><a href="index.php?subtopic=downloads">Downloads</a></li>'; ?>
<?PHP if($config['site']['gallery_page'] == 1) echo '<li><a href="index.php?subtopic=gallery">Gallery</a></li>'; ?>
</ul>

<?PHP
if($config['site']['shop_system'] == 1)
{
echo '<h1>Shop</h1>
<ul>
<li><a href="index.php?subtopic=buypoints"><b><font size="1" color="red"><blink>Buy Premium Points</blink></font></b></a></li>
<li><a href="index.php?subtopic=shopsystem">Shop Offer</a></li>';
if($logged)
echo '<li><a href="index.php?subtopic=shopsystem&action=show_history">Shop History</a></li>';
echo '</ul>';
}
?>

</div>

<div class="main">

<div class="padded">
<?PHP echo $main_content; ?>
</div>

</div>

<div class="clearer"><span></span></div>

<div class="footer">

<span class="left">&copy; 2008 <?PHP echo $config['server']['serverName']; ?>, Account Manager by Gesior</span>

<span class="right">Design by <a href="http://arcsin.se/" target="_blank">Arcsin</a> <a href="http://templates.arcsin.se/"target="_blank">Web Templates</a></span>

<div class="clearer"><span></span></div>

</div>

</div>

</body>

</html>

PS: sorry for my eanglish and my newbish..:confused:
 
Back
Top