metronic 7 angular
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?
Replies (2)
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>
Make sure to adjust the height of the container element if necessary to ensure that the scrollbar appears only when needed.
Thanks
thank you , but it's not wirking when i set the Submenu toggle dropdown .. the dropdown menu not opens when i enable this div