Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Problem with GTranslate
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: Problem with GTranslate
#15106
Problem with GTranslate 13 Years, 1 Month ago Karma: 0
Hi,
I'm using your ARI Ext module and it works great in the primary language of the site. However, if I use GTranslate module, the menu ads blank cells for arrows, it looks really messy (please see the attached image). How can I solve this problem and have consistent look of the menu regardless of other modules such as GTranslate?
The administrator has disabled public write access.
 
#15107
Re:Problem with GTranslate 13 Years, 1 Month ago Karma: 748
Hello,

Provide link to page where we can see the problem that we can investigate it.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#15109
Re:Problem with GTranslate 13 Years, 1 Month ago Karma: 0
You can view this problem at www.zacini.net.
The administrator has disabled public write access.
 
#15133
Re:Problem with GTranslate 13 Years, 1 Month ago Karma: 748
The problem occurs because Google Translate service changes menu HTML layout. It can be fixed if add the next code to index.php file of site template before </head> tag:

Code:


if (typeof(Ext) != "undefined")
  Ext.onReady(function() {
    Ext.select('UL.ux-menu LI > SPAN + A.ux-menu-link-parent').setStyle({"position": "absolute", "top": 0, "right": 0, "width": "8px", "background-color": "transparent", "border-style": "none"});
  });



Regards,
ARI Soft
The administrator has disabled public write access.
 
#15134
Re:Problem with GTranslate 13 Years, 1 Month ago Karma: 0
Thanks for your suggestion.
I tried adding your code as you explained (before </head> tag), but that code then shows at the top of the page (Frontend) as text. How can I fix this?
The administrator has disabled public write access.
 
#15135
Re:Problem with GTranslate 13 Years, 1 Month ago Karma: 748
Sorry, forgot about <script> tag. Use the next code:

Code:


<script type="text/javascript">
if (typeof(Ext) != "undefined")
  Ext.onReady(function() {
    Ext.select('UL.ux-menu LI > SPAN + A.ux-menu-link-parent').setStyle({"position": "absolute", "top": 0, "right": 0, "width": "8px", "background-color": "transparent", "border-style": "none"});
  });
</script>



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 12