Hi,
I am almost done building a website with your Leaders theme. I just noticed that the mobile menu has a fixed height of 300px. My menu is fairly extensive and the fixed height is a problem for me.
The link to the site is http://dev2016.openadoption.ca/home
You will have a popup, please enter "shield" in both fields.
Thanks.
          
  
Hi,
Please open file main.css(/sites/all/themes/md_leaders/css/main.css), find line 130:
#mainmenu.sf-menu {
position: absolute;
right: 0;
}
add a attribute to this code. Result:
#mainmenu.sf-menu {
position: absolute;
right: 0;
overflow-y: scroll !important;
}