I need a drop down hover-able menu with sub menus in two initial columns, instead of just one.
I have a functioning webpage already: flagsforfallenvets.com .
However our volunteers don't scroll down to see other cemeteries listed.
To see click on National Cemeteries - Instructions, there are 11 cemeteries, but if you don't scroll down only 6 are visible.
How do I make 2 columns of 6, with the submenus visible during hover?
Thank you,
Russ
<div class="navbar">
<a href="#home">Home</a>
<a href="#news">News</a>
<div class="dropdown">
<button class="dropbtn">Dropdown
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<div class="header">
<h2>Mega Menu</h2>
</div>
<div class="row">
<div class="column">
<h3>Category 1</h3>
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
<div class="column">
<h3>Category 2</h3>
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
<div class="column">
<h3>Category 3</h3>
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
</div>
</div>
</div>
Many of the screens are narrow and that lends your type of layout for the user to scroll as you noted to see the options.
The other option is to have the sub-menu scaled to the screen versus fixed.
This way the user is made aware that there are more items in the submenu which they can scroll as opposed to having to scroll the main browser view and then access the submenu again
http://dhtml-menu.com/menu/dhtml-floating-menu-sample.html