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

Webpage design problem

The extros

New Member
Joined
Jun 28, 2010
Messages
98
Reaction score
1
Hi there...

addons.png - Speedy Share - upload your files here

if u look at the communinity menu ,war system and addon list, the categories I add, don't show properly... they are like just added but looks rlly ugly... what can i do to fix it and maybe put them in other colors... here i add you my index.php from the layout!


Your code. Your site. Use it. - paste.org
 
replace
PHP:
<li><a href="{$path}/index.php/p/v/wars">War System</a></li>
with this:

PHP:
<a href='{$path}/index.php/p/v/wars">
  <div id='submenu_wars class='Submenuitem'>
    <div class='LeftChain' style='background-image:url({$path}/templates/tibia/images/global/general/chain.gif);'></div>
    <div id='ActiveSubmenuItemIcon_wars' class='ActiveSubmenuItemIcon' style='background-image:url({$path}/templates/tibia/images/global/menu/icon-activesubmenu.gif);'></div>
    <div id='ActiveSubmenuItemLabel_wars' class='SubmenuitemLabel'>War System</div>
    <div class='RightChain' style='background-image:url({$path}/templates/tibia/images/global/general/chain.gif);'></div>
  </div>
</a>

the same with the addons.. only change roots like
PHP:
<a href='{$path}/index.php/p/v/wars">
 
replace
PHP:
<li><a href="{$path}/index.php/p/v/wars">War System</a></li>
with this:

PHP:
<a href='{$path}/index.php/p/v/wars">
  <div id='submenu_wars class='Submenuitem'>
    <div class='LeftChain' style='background-image:url({$path}/templates/tibia/images/global/general/chain.gif);'></div>
    <div id='ActiveSubmenuItemIcon_wars' class='ActiveSubmenuItemIcon' style='background-image:url({$path}/templates/tibia/images/global/menu/icon-activesubmenu.gif);'></div>
    <div id='ActiveSubmenuItemLabel_wars' class='SubmenuitemLabel'>War System</div>
    <div class='RightChain' style='background-image:url({$path}/templates/tibia/images/global/general/chain.gif);'></div>
  </div>
</a>

the same with the addons.. only change roots like
PHP:
<a href='{$path}/index.php/p/v/wars">
<a href='{$path}/index.php/p/v/wars">
<div id='submenu_wars class='Submenuitem'>
<a href='{$path}/index.php/p/v/wars">

Check those three lines ;) (no closing single quote)
 
Back
Top