css3 - Bootstrap dropdown at footer? -


i have issues bootstrap dropdown in footer menu?

here example talking about?

http://www.bootply.com/129846

try click on dropdown in footer, see happen, go under page, , new scroll appear?

try add dropdown footer of page

<div id="footer">   <div class="container">      <li class="dropdown">                 <a href="#" data-toggle="dropdown" role="button" id="drop5" class="dropdown-toggle">dropdown 2 <b class="caret"></b></a>                 <ul aria-labelledby="drop5" role="menu" class="dropdown-menu" id="menu2">                   <li role="presentation"><a href="#" tabindex="-1" role="menuitem">action</a></li>                   <li role="presentation"><a href="#" tabindex="-1" role="menuitem">another action</a></li>                   <li role="presentation"><a href="#" tabindex="-1" role="menuitem">something else here</a></li>                   <li class="divider" role="presentation"></li>                   <li role="presentation"><a href="#" tabindex="-1" role="menuitem">separated link</a></li>                 </ul>               </li>   </div> </div> 

try adding following:

<ul class="dropdown-menu dropup" role="menu" aria-labelledby="labelname"> 

Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -