- Posts: 22
- Thank you received: 0
Submenu does not open
-
Tamanna
Inactive member - Topic Author
- Member
Less
More
11 years 1 month ago #34458
by Tamanna
Submenu does not open was created by Tamanna
When we open site the menu and submenu is fine. But when we go to inner pages the menu starts flickering.
But if we refresh the site again the menus are ok. Again when we go to inner pages problem arises.
Is this the problem of cache? I wrote earlier also, you told to increase vertical padding that I increased.
But still the problem is there.
Link:http://www.trendzacademy.com/
Thanks
Tamanna
But if we refresh the site again the menus are ok. Again when we go to inner pages problem arises.
Is this the problem of cache? I wrote earlier also, you told to increase vertical padding that I increased.
But still the problem is there.
Link:http://www.trendzacademy.com/
Thanks
Tamanna
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 1 month ago #34464
by ivan.milic
Replied by ivan.milic on topic Submenu does not open
Open :
templates/hot_clinic/js/jquery.hjt.navv.js , replace content with this code:
templates/hot_clinic/js/jquery.hjt.navv.js , replace content with this code:
Code:
/*------------------------------------------------------------------------
# "Sparky Framework" - Joomla Template Framework
# Copyright (C) 2013 HotThemes. All Rights Reserved.
# License: http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
# Author: HotJoomlaTemplates.com
# Website: http://www.hotjoomlatemplates.com
-------------------------------------------------------------------------*/
(function(jQuery){
jQuery.fn.dropDownMenu = function(options) {
var defaults = {
speed: 300,
effect: 'fadeToggle'
};
var options = jQuery.extend(defaults, options);
return this.each(function() {
jQuery('.navv ul').hide();
jQuery('.navv li ul li').filter(':last-child').css('border-bottom', 'none');
jQuery('.navv li').hover(function(){
jQuery(this).find('ul:first:not(:visible)').stop(true,true)[options.effect](options.speed);
},function(){
jQuery(this).css('position', 'relative')
.find('ul:first:visible').stop(true,true)[options.effect](options.speed);
});
});
};
})(jQuery);
Please Log in to join the conversation.
-
Tamanna
Inactive member - Topic Author
- Member
Less
More
- Posts: 22
- Thank you received: 0
11 years 1 month ago #34505
by Tamanna
Replied by Tamanna on topic Submenu does not open
This code is already inserted in the defined file.
Still the same problem is coming.
Thanks
Tamanna
Still the same problem is coming.
Thanks
Tamanna
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 1 month ago #34515
by ivan.milic
Replied by ivan.milic on topic Submenu does not open
It is similar but it has slight changes. See :visible. Replace code
Please Log in to join the conversation.
Time to create page: 0.248 seconds