i have large aside menu , but the scroll bar not exists and cannot scroll down to see the other items in the aside menu..
how i can enable scroll bar to aside menu?
To enable a scrollbar for the aside menu in Metronic 7 Angular, you can do the following:
Open the HTML file that contains the aside menu code.
Find the container element that wraps the aside menu, usually a div element with an id of kt_app_sidebar_menu_wrapper.
Add a CSS overflow-y
property to the container element and set it to auto or scroll. This will enable the vertical scrollbar for the container.
Example code:
<div id="kt_app_sidebar_menu_wrapper" style="overflow-y: auto;">
<!-- your aside menu code here -->
</div>
thank you , but it's not wirking when i set the Submenu toggle dropdown .. the dropdown menu not opens when i enable this div
Hi,
Apologies for my late response.
https://preview.keenthemes.com/metronic/angular/demo1/dashboard
This is the Angular version of the Metronic 7 demo site and the scrollbar should be working by default. If you're experiencing issues with the scrollbar, it could be due to changes you made to the original project files. I suggest trying a fresh install to see if that resolves the issue.
Thanks