• 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 Text Help [REP++]

Teddy

SweStream.se
Joined
Oct 2, 2008
Messages
3,797
Reaction score
10
Location
Sweden 172
Hey , i got a problem look at this text size.. and its works in other layouts but in this its very very small....

IMG:
52715194.png

17331664.png
 
Hmm
Layout.php
if thats help..
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    	<title><? echo $title; ?></title>
        <link rel="stylesheet" href="<? echo $layout_name; ?>/style.css" type="text/css" />
        <script src="<? echo $layout_name; ?>/menu.js" type="text/javascript"></script>
        <script type="text/javascript">
			var category = '<? echo $category; ?>';
		</script>
        <? echo $layout_header; ?>
    </head>
    
    <body onload="initMenu();">
    	<div id="page">
        <!-- Keep all on center of browser -->
            
            <!-- Header Section -->
            <div id="header"></div>
            <!-- End -->
            
            <!-- Menu Section -->
            <div id="tabs">
            	<span id="news" onclick="menuSwitch('news');" class="tab-active">Latest News</span>
                <span id="account" onclick="menuSwitch('account');" class="tab">Account</span>
                <span id="community" onclick="menuSwitch('community');" class="tab">Community</span>
                <span id="library" onclick="menuSwitch('library');" class="tab">Library</span>
                <?
                if($config['site']['shop_system'] == 1)
				{
                	echo '<span id="shops" onclick="menuSwitch(\'shops\');" class="tab">Shops</span>';
                }
                ?>
            </div>
            
            <div id="mainsubmenu">
            	<div id="news-submenu">
                    <a href="?subtopic=latestnews">Latest News</a>
                    <span class="separator"></span>
                    <a href="?subtopic=archive">News Archives</a>
                </div>
                
                <div id="account-submenu">
					<?PHP
					if($group_id_of_acc_logged >= $config['site']['access_admin_panel'])
					{
						echo '<a href="?subtopic=adminpanel">Admin Panel</a>
						<span class="separator"></span>';
					}
					
					if($group_id_of_acc_logged > 0)
					{
						echo '<a href="?subtopic=namelock">Namelocks</a>
						<span class="separator"></span>';
					}
					
					if($logged)
					{
						echo '<a href="?subtopic=accountmanagement">My Account</a>
						<span class="separator"></span>
						<a href="?subtopic=accountmanagement&action=logout">Logout</a>
						<span class="separator"></span>';
					}
					else
					{
						echo '<a href="?subtopic=accountmanagement">Login</a>
						<span class="separator"></span>';
					}
					?>
					<a href="?subtopic=createaccount">Create Account</a>
                    <span class="separator"></span>
					<a href="?subtopic=lostaccount">Lost Account Interface</a>
                    <span class="separator"></span>
					<a href="?subtopic=tibiarules">Server Rules</a>
                </div>
                
                <div id="community-submenu">
                	<a href="?subtopic=characters">Search Player</a>
                    <span class="separator"></span>
                    <a href="?subtopic=guilds">Guilds</a>
                    <span class="separator"></span>
                    <a href="?subtopic=highscores">Highscores</a>
                    <span class="separator"></span>
                    <a href="?subtopic=killstatistics">Last Deaths</a>
                    <span class="separator"></span>
                    <?PHP if(!empty($config['site']['forum_link'])) echo '<a href="'.$config['site']['forum_link'].'">Forum</a><span class="separator"></span>'; ?>
                    <a href="?subtopic=team">Game Masters</a>
                </div>
                
                <div id="library-submenu">
                	<a href="?subtopic=creatures">Monsters</a>
                    <span class="separator"></span>
                    <a href="?subtopic=spells">Spells</a>
                    <span class="separator"></span>
                    <a href="?subtopic=whoisonline">Who is online?</a>
                </div>
                
    			<?
				if($config['site']['shop_system'] == 1)
				{
					echo '
					<div id="shops-submenu">
						<a href="?subtopic=buypoints">Buy Premium Points</a>
						<span class="separator"></span>
						<a href="?subtopic=shopsystem">Shop Offer</a>';
						if($logged)
							echo '<span class="separator"></span><a href="?subtopic=shopsystem&action=show_history">Shop History</a>';
					echo '</div>';
				}
				?>
            </div>
            <!-- End -->
            
            <!-- Content Section -->
            <div id="content">
            	<div id="margins">
                	<table cellpadding="0" cellspacing="0" border="0" width="100%">
                		<tr>
                        	<td><a href="index.php?subtopic=latestnews"><? echo $config['server']['serverName']; ?></a> &raquo; <? echo $topic; ?></td>
                            <td>
                            <?PHP
							if($config['status']['serverStatus_online'] == 1)
								echo '
								<font color="green"><b>Server Online</b></font> &raquo;
								Players Online: '.$config['status']['serverStatus_players'].' / '.$config['status']['serverStatus_playersMax'].' &raquo;
								Monsters: '.$config['status']['serverStatus_monsters'].' &raquo; Uptime: '.$config['status']['serverStatus_uptime'].'';
							else
								echo '<font color="red"><b>Server Offline</b></font>';
							?>
                            </td>
                        </tr>
                    </table>
                    <hr noshade="noshade" size="1" />
                    <? echo $main_content; ?>
                </div>
            </div>
            <div id="content-bot"></div>
            <div id="copyrights">
            	<p>&copy; 2009 by <? echo $config['server']['serverName']; ?>. All rights reserved.</p>
            </div>
            <!-- End -->
            
        <!-- End -->
        </div>
    </body>
</html>
 
Back
Top