Reputation: 1039
I have so many menus for my super user for my prestashop 1.6.3 Admin panel,As so many modules are used it creates Menus and submenus which are needed ,
So I want the left menu to be made scrollable.Which tpl or file I need to edit to do the change for this purpose
Upvotes: 0
Views: 615
Reputation: 2023
Add
#nav-sidebar{
position: absolute !important;
height:auto !important;
}
at /admin/themes/default/cssadmin-theme.css
Upvotes: 0
Reputation: 1141
The file you're looking for is located here: adminXXX/themes/default/template/nav.tpl
But the <nav>
id is nav-sidebar
, so it might be easier just to play with CSS.
Upvotes: 1