startmin icon indicating copy to clipboard operation
startmin copied to clipboard

No scrolling in left vertical menu

Open arsho opened this issue 6 years ago • 2 comments

Users can not scroll through the left menu. Even if first level of the menu is opened, others options below are being hidden as we can not scroll it.

Google Chrome Version 76.0.3809.100 (Official Build) (64-bit) Windows 10 Screen size 14"

Tested in: http://secondtruth.github.io/startmin/pages/tables.html

arsho avatar Aug 25 '19 03:08 arsho

Yes, same problem. Would be great to have fix.

spreaderman avatar Dec 22 '20 03:12 spreaderman

<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
..............
<ul class="nav" id="side-menu">
..........
</ul>
</nav>

change and move ul tag content to:

<nav class="navbar navbar-inverse1 navbar-fixed-top" role="navigation">
..............
</nav>

<aside id="sidebar" class="sidebar">
<ul class="nav" id="side-menu">
......
</ul>
</aside>

Quacrom avatar May 09 '21 17:05 Quacrom