We moved to new unified forum!

Please post all new support queries in our New Forum.

T3 Community Discussion & Support

Let's build the best free Joomla template framework, together!
  1. Sarah
  2. General Discussion
  3. Tuesday, 22 October 2013
  4.  Subscribe via email
I need to make the Sticky Mega Menu in JA-Fixel Static, can anybody help me with this issue, I have changed the header.php file with the code <nav id="t3-mainnav" class="wrap t3-mainnav navbar-static-top"> and the menu is still sticky.

any suggestions would be greatly appreciated
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Sarah,

You can post your question in Joomla Forums about JA Fixel
http://www.joomlart.com/forums/forumdisplay.php?467-JA-Fixel

For more, JA Fixel top menu have designed to be a sticky menu.
It use its own function in the template itself rather than the default sticky menu function of T3.

You can try to remove a block of code in /templates/ja_fixel/js/script.js (line 754 - 776)

(function(){
// Add class for mainmenu when scroller
var light = null,
sid = null,
mainnav = $('#t3-mainnav');

if(mainnav.length){
$(window).scroll(function() {

if(light != $(window).scrollTop() > mainnav.outerHeight(true) * 1.5){
light = !light;

light ? mainnav.addClass('affix') : mainnav.removeClass('light-mainnav');

//force reflow
mainnav[0].offsetWidth;

light ? mainnav.addClass('light-mainnav') : mainnav.removeClass('affix');
}
})
}

})();

Hope it helps,

Regards
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.