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

Translation system issue

Lightonia

Lightonia.servegame.com
Joined
Jun 4, 2007
Messages
492
Reaction score
9
Hey im having issues with my translation system,
as you can see on my website after pressing on a flag: http://Lightonia.com

The code for the translator is:
Code:
<div id="translator_5296"><noscript>Javascript is disable - <a href="http://www.webestools.com/">http://www.webestools.com/</a> - <a href="http://www.webestools.com/translator-buttons-web-page-translation-google-translate-website-widget-online-html-translator.html">Translation Buttons Generator</a></noscript></div><script type="text/javascript" src="http://services.webestools.com/translator/5296-1-yyyyyyyyy.js"></script>

Hopefully someone could help me out!
 
Enable javascript in your browser.
Maybe you are browser addons like NoScript?
 
Hey im having issues with my translation system,
as you can see on my website after pressing on a flag: http://Lightonia.com

The code for the translator is:
Code:
<div id="translator_5296"><noscript>Javascript is disable - <a href="http://www.webestools.com/">http://www.webestools.com/</a> - <a href="http://www.webestools.com/translator-buttons-web-page-translation-google-translate-website-widget-online-html-translator.html">Translation Buttons Generator</a></noscript></div><script type="text/javascript" src="http://services.webestools.com/translator/5296-1-yyyyyyyyy.js"></script>

Hopefully someone could help me out!

OMG Arabic Translate is very sucks xD
 
My issue is that i can't press on any other thing on the website, it remains on latestnews.
I can do that with other websites.

By the way Summ, how do you mean?
 
Hey why no Dutch!?

What Summ means is maybe you downloaded a browser extension or browser add-on that disables Javascript, they are very common. It seems to work fine for me, I press on a flag and I get taken to Google translate, with the site translated to whatever language I selected.
 
Last edited:
The translator seems to remove the <a> tag around the <div> which is your menu entry. Maybe because <a> is not directly surronding the text. Maybe you can try to change the order on that in your layout.

Also, what is this child's play with "You cannot rightclick" lol.
 
Im not sure on what you mean, also you can right click now.

By the way, even when i go into google.translate and search for my website, i get the same issue.
 
Last edited:
You could atleast try to read what I am saying.

Goto your layout file and change these:

Code:
<a href='?subtopic=characters'>
    <div id='submenu_characters' 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_characters' class='ActiveSubmenuItemIcon' style='background-image:url(<?PHP echo $layout_name; ?>/images/menu/icon-activesubmenu.gif);'></div>
        <div class='SubmenuitemLabel'>Characters</div>
        <div class='RightChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
    </div>
</a>

Code:
<div id='submenu_characters' 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_characters' class='ActiveSubmenuItemIcon' style='background-image:url(<?PHP echo $layout_name; ?>/images/menu/icon-activesubmenu.gif);'></div>
    <div class='SubmenuitemLabel'><a href='?subtopic=characters'>Characters</a></div>
    <div class='RightChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
</div>

Note that I moved the link ( <a href="bla"></a> ) directly around the menu text, instead of the whole div container.
Do that for each menu entry.
 
Back
Top