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?

In IE the submenu items just disappear
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: In IE the submenu items just disappear
#8677
In IE the submenu items just disappear 13 Years, 7 Months ago Karma: 0
Dear All,

here (www.priorum.ru/) I tried to make a three level menu where the main level is Joomla default menu, and the other two are made with ARI Ext. They all are in the same USER3 position, the template is made with Artisteer.

With the support of this forum members, I have managed to exclude space between menus (that ones, vertically). I slightly changed the way it looks, so generally now I feel it is okay.

However, in IE I noticed strange thing - the submenu items while being hovered just disappear in a second or two so I have no chance to click any sublevel menu but first or second. In Firefox and Chrome everything is perfect.

I have attached css for the menu as well as module settings. I would be extremely grateful for helping me resolve IE issue.

Please be informed that I am not a code-friendly person I am an ordinary person who loves Joomla and is limited to the knowledge about components and modules only, and always afraid of php and the like. But I am trying to cope with my fear

Thank you a lot in advance!
The administrator has disabled public write access.
 
#8737
Re:In IE the submenu items just disappear 13 Years, 7 Months ago Karma: 748
Hello,

The menu also has problem in FireFox, the first main menu item is shifted to right. It happens due to problem with site template markup and styles. It can be fixed if add the following CSS rules:

Code:


.ux-menu-container
{
clear: both;
}

body .ux-menu-container ul li 
{
margin-top: 0;
}



Regarding IE issue, it seems this problem with content in <div class="art-BlockContent-body"> block and this is site template problem. You can investigate it in more details with help IEDevToolBar extension for IE browser.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#8746
Re:In IE the submenu items just disappear 13 Years, 7 Months ago Karma: 0
Many thanks for your invaluable help! Aligning right is solved, now it does look good - no shifting at all.

As per IE issue - thank you for the hint! I will take appropriate actions!
The administrator has disabled public write access.
 
#8825
Re:In IE the submenu items just disappear 13 Years, 7 Months ago Karma: 0
Tried many other menu modules but they all have the same problem - did not show properly inside body in IE.

Made some changes to template look and relied upon J! menu module. It works as I want - no disappearing in IE, everyhting stable and good enough.

Cant say I got what I wanted by switching to joomla menu - the whole idea was having different module as a menu right down the main menu. This is totally my template's weakness and has no relation to AriExtmenu.

Thank you guys for support!
The administrator has disabled public write access.
 
#22622
Re:In IE the submenu items just disappear 12 Years, 6 Months ago Karma: 0
Hello Joomla! Developers.

I was having the same problem, and I got a cool work around for IE that solved my problem (which I believe is also yours)...

On file <root>\modules\mod_ariextmenu\kernel\ExtMenu\class.ExtMenu.php (line 75 or so ), we have:
sprintf('Ext.onReady(function() { new Ext.ux.Menu("' . $id . '", %1$s); Ext.get("' . $id . '").select(".ux-menu-sub").removeClass("ux-menu-init-hidden"); });',

Change it to:
sprintf('(function($) { $(document).ready( function() { new Ext.ux.Menu("' . $id . '", %1$s); Ext.get("' . $id . '").select(".ux-menu-sub").removeClass("ux-menu-init-hidden"); }); } ) ( jQuery );',


(PS: don't forget to import jQuery.js )

Hope this helps everyone...
Best of Luck!
Last Edit: 2011/12/10 18:40 By wordsvspain.
The administrator has disabled public write access.
 
#22623
Re:In IE the submenu items just disappear 12 Years, 6 Months ago Karma: 748
Hello,

The latest version of the module uses MooTools "ready" event (if MooTools library is loaded) to load menu and avoid conflict with MooTools and ExtJS libraries in IE. It doesn't require to load jQuery library.

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