Hi again,
Is it possible to make the menus scrollable, in case they’re longer than screen height?
Thanks!
Hey Yuniyuni!
Yes it is possible. Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 1024px) and (min-width: 768px) {
.av-main-nav > li > ul {
height: 500px;
overflow: hidden;
overflow-y: scroll;
}}
It will make the height of dropdown menu 500px on screens smaller than 1024px and it will be scrollable
Cheers!
Yigit