Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author sajjadrad

    (@sajjadrad)

    Hi
    I visited your website,but I didn’t see any drop down menu,please enable drop down menu and set dropdown link to level 2 until I can review the output HTML.
    Thanks.

    hanzi

    (@miyuruhansi21)

    I can’t display the drop down menu.After activating plugin i just added the below code to my template.
    <div class=”navbar”>
    <div class=”navbar-inner”>
    <div class=”container”>

    <span class=”icon-bar”></span>
    <span class=”icon-bar”></span>
    <span class=”icon-bar”></span>
    <div class=”nav-collapse collapse”>
    <ol class=”nav”>
    <?php if (function_exists(‘getNavMenu’)): ?>
    <?php echo getNavMenu(‘Left_menu’,’click’); ?>
    <?php endif; ?>

    </div></div></div></div>

    and normally created a menu,added pages to that.Please help me to do this.

    Plugin Author sajjadrad

    (@sajjadrad)

    Hi
    You must close ol tag after <?php endif; ?>

    Plugin Author sajjadrad

    (@sajjadrad)

    If problem exist yet please copy output html here.
    Thanks

    Hello,

    Same problem here…
    The sub-menu does not display.

    <div class="navbar navbar-inverse navbar-fixed-top">
        <div class="navbar-inner">
          <div class="container">
            <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
              <span class="icon-bar"></span>
              <span class="icon-bar"></span>
              <span class="icon-bar"></span>
            </a>
            <div class="nav-collapse collapse">
              <ul class="nav">
    
    <?php if (function_exists('getNavMenu')): ?>
                            <?php echo getNavMenu('mainmenu','hover'); ?>
                        <?php endif; ?>
    
              </ul>
            </div><!--/.nav-collapse -->
        </div>
        </div>
      </div>

    Is there something to modify in the php class ?

    Thx

    Plugin Author sajjadrad

    (@sajjadrad)

    Please copy HTML output here,not codes.
    Depend on your browser use show resource and copy menu HTML output here.

    For sub menu you must add this style to you bootstrap or style file:

    .dropdown-menu .sub-menu {
        left: 100%;
        position: absolute;
        top: 0;
        visibility: hidden;
        margin-top: -1px;
    }
    
    .dropdown-menu li:hover .sub-menu {
        visibility: visible;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .nav-tabs .dropdown-menu, .nav-pills .dropdown-menu, .navbar .dropdown-menu {
        margin-top: 0;
    }
    
    .navbar .sub-menu:before {
        border-bottom: 7px solid transparent;
        border-left: none;
        border-right: 7px solid rgba(0, 0, 0, 0.2);
        border-top: 7px solid transparent;
        left: -7px;
        top: 10px;
    }
    .navbar .sub-menu:after {
        border-top: 6px solid transparent;
        border-left: none;
        border-right: 6px solid #fff;
        border-bottom: 6px solid transparent;
        left: 10px;
        top: 11px;
        left: -6px;
    }

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Sub Menu does not display, I am sad’ is closed to new replies.