Hi Guys,
I found the problem that caused “Accordion Image Menu” to show only 4 menus on my website.
Here is where the problem lays and what I did to fix it:
1. js/accordionImageMenu-0.4.js .: here is where the calculation for the menu width is;
2. line 57 contain: var maxDim = _this.menuSettings.closeDim*$this.length + _this.menuSettings.border*$this.length + 10 ;
3. “10” is in theory the gap need to fit all;
4. I fixed it by adding: _this.menuSettings.openDim , which is the size for a single item at the menu when it is open;
5. The final line should be like this:
var maxDim = _this.menuSettings.closeDim*$this.length + _this.menuSettings.border*$this.length + _this.menuSettings.openDim + 10 ;
I hope that help you guys.
Cheers,