• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Windows Geisor accout, menu.

Zt0ffe

New Member
Joined
Sep 26, 2008
Messages
341
Reaction score
4
Location
Sweden
Anyone know how to fix the menu with Gesior so the menu dosen't go back? I mean when you click it it drags all sub links up.

So its you can see them at all times?

Thanks in advance!
 
Try with leaving activeSubmenuItem empty, it's in layout.php.
PHP:
var activeSubmenuItem='';
 
Try with leaving activeSubmenuItem empty, it's in layout.php.
PHP:
var activeSubmenuItem='';

I dont really know which text to delete.. :/

ex:

Code:
<div id='news_Submenu' class='Submenu'>
<a href='?subtopic=latestnews'>
  <div id='submenu_latestnews' class='Submenuitem' onMouseOver='MouseOverSubmenuItem(this)' onMouseOut='MouseOutSubmenuItem(this)'>
    <div class='LeftChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
    <div id='ActiveSubmenuItemIcon_latestnews' class='ActiveSubmenuItemIcon' style='background-image:url(<?PHP echo $layout_name; ?>/images/menu/icon-activesubmenu.gif);'></div>
    <div class='SubmenuitemLabel'>Latest News</div>
    <div class='RightChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
  </div>
</a>
 
Last edited:
I'm currently viewing your website and I can see this in the beginning of the layout.
PHP:
var activeSubmenuItem='latestnews';

Probably looks like this if you open up layout.php
PHP:
var activeSubmenuItem='<?PHP echo $subtopic; ?>';

Just search after var activeSubmenuItem and remove the content between the apostrophes. :p
 
I'm currently viewing your website and I can see this in the beginning of the layout.
PHP:
var activeSubmenuItem='latestnews';

Probably looks like this if you open up layout.php
PHP:
var activeSubmenuItem='<?PHP echo $subtopic; ?>';

Just search after var activeSubmenuItem and remove the content between the apostrophes. :p

I have activeSubmenuItem alot of them. But not the var activeSubmenuItem.

Like this:
<div id='submenu_latestnews' class='Submenuitem' onMouseOver='MouseOverSubmenuItem(this)' onMouseOut='MouseOutSubmenuItem(this)'>
 
RaibNg.png


:(

Tried with CTRL+F?
 
Back
Top