CyberAP
Well-known member
As follows from this code in xenforo.js:
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('.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