Lack of interest Responsive: search for .tabLinks inside #navigation, not for .blockLinksList inside .navTab

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

CyberAP

Well-known member
As follows from this code in xenforo.js:

Code:
var $linksList = $('#navigation').find('.navTab.selected .blockLinksList');

JS searches for .blockLinksList in .navTab.selected. Sometimes you have to move .tabLinks to another place and that code doesn't work.

We can change it to this and it will work the same way, but also with support for custom styles.

Code:
var $linksList = $('#navigation').find('.tabLinks');
 
Upvote 1
This suggestion has been closed. Votes are no longer accepted.
Top Bottom