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. Gerhard Bies
  2. Sherlock Holmes
  3. General Discussion
  4. Thursday, 11 July 2013
  5.  Subscribe via email
hi,

main menu does not respond well if you have more than 6 menu items

1.Apple macbook pro
2. on laptop firefox and Chrome
3.did go from wide to smaller size
4. see pictures whats hapend
what do I wrong
Attachments (2)
Comment
There are no comments made yet.
Accepted Answer
Accepted Answer Pending Moderation
0
Votes
Undo
I have run into the same problem on my site. They way I took care of the issue was to make a change in the "variables.less" file:

Around line 187:

Change:
@navbarCollapseWidth:                 767px;


To:
@navbarCollapseWidth:                 979px;


I did notice that I will have to make this change again whenever the template is upgraded, so this probably isn't the best fix, but it will make your menu look better :)
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # Permalink
Accepted Answer Pending Moderation
0
Votes
Undo
Hi,

Thanks for your answer, it solved my problem on the moment.

did make the fix in "variables custom.less", I am only not sure if the template by a upgrade will be overwrite. :)

I am only sutprised that i got no answer from the T3 team. ;)
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
I have run into the same problem on my site. They way I took care of the issue was to make a change in the "variables.less" file:

Around line 187:

Change:
@navbarCollapseWidth:                 767px;


To:
@navbarCollapseWidth:                 979px;


I did notice that I will have to make this change again whenever the template is upgraded, so this probably isn't the best fix, but it will make your menu look better :)


This works great for me to stop the main menu from truncating and instead just switching to the collapsed menu style. I am having an issue with the sub navigation items not showing b/w 767px and 979px unless I hover over them. Once I scale down past 767px they all show.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 2
Accepted Answer Pending Moderation
0
Votes
Undo
I have run into the same problem on my site. They way I took care of the issue was to make a change in the "variables.less" file:

Around line 187:

Change:
@navbarCollapseWidth:                 767px;


To:
@navbarCollapseWidth:                 979px;


I did notice that I will have to make this change again whenever the template is upgraded, so this probably isn't the best fix, but it will make your menu look better :)


This works great for me to stop the main menu from truncating and instead just switching to the collapsed menu style. I am having an issue with the sub navigation items not showing b/w 767px and 979px unless I hover over them. Once I scale down past 767px they all show.


I found in developer tools that it was a media query opacity in megamenu.CSS causing this (unchecking it to create an opacity of 1 made the drop down menu items visible) :
@media (min-width: 768px) {
.t3-megamenu.animate .mega > .mega-dropdown-menu {
transition: all 400ms;
-webkit-transition: all 400ms;
-ms-transition: all 400ms;
-o-transition: all 400ms;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-o-backface-visibility: hidden;
backface-visibility: hidden;
opacity: 0;
}
}


I have been attempting to do everything in LESS so I'd like to stay away from just editing the CSS . Do I need to reconfigure my gridwidth's since I made the change for the collapse navigation from 767px to 979px?
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 3
  • Page :
  • 1


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