Viewing 3 replies - 1 through 3 (of 3 total)
  • I’m having similar problems. Some of the settings have no apparent effect, and one group of settings in particular is completely broken — the dimensions. Supposedly, the “fixed dimension” is supposed to control the width when the menu is set to horizontal… yet it always sets the vertical dimension. The open and closed dimension settings are similarly ineffective.

    Plugin Author alaingg

    (@alaingg)

    Tamara-IT, the last release is more flexible. Now if your post or page doesn’t have an image attached it will appear on the menu without background. Previously the menu only deployed the items with images.

    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,

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Accordion Image Menu] Only 4 items showing’ is closed to new replies.