Page 1 of 1

slim menu Y overflow scroll

Posted: 22 Nov 2017, 11:33
by matthieu.valente
Hi,

I have a small usability bug with the slim pu:menu.
If the height of the browser is smaller than a sub menu, there is no way to access bottom items.
See showcase screenshot
Image

Is there an easy workaround ?

Thanks and regards,
Matthieu

Re: slim menu Y overflow scroll

Posted: 01 Dec 2017, 12:58
by cagatay.civici

Code: Select all

.layout-menu-slim {
   .ultima-menu {
      > li {
         > ul {
            max-height: 250px;
            overflow-y: auto;
         }
      }
   }
}
Can help.

Re: slim menu Y overflow scroll

Posted: 01 Dec 2017, 14:42
by matthieu.valente
Hi,

thanks, it worked for me with the following :

Code: Select all

.layout-menu-slim  .ultima-menu   > li  >  ul {
            max-height: 250px;
            overflow-y: auto;
}
It would be great to include in next ultima release and if possible with a graphically enhanced scroll as it exists in overlay menu.

Thanks,
Matthieu

Re: slim menu Y overflow scroll

Posted: 28 Dec 2017, 09:10
by mert.sincan
Thanks a lot for the update! We'll decide it and get back to you.