Add scroll function to main menu drop-down section in Refresh theme

hi everyone! Now I’m using the theme Refresh, wish to add a scroll function to the main menu section due to too many submenus, I tried some apps but didn’t work nice, is there anyway I could achieve this by adding some code into the theme?

Thanks!

Hi @JINCHENLONG
Thank you for your question.
Please share your store URL, page URL and also password (if your store has one) so we can help you.

Hi @JINCHENLONG

Can you kindly share your store link (with the password if any) so we can help you?

SURE! here’s the address: skymobilebk.com

the scroll I would like to add to is the submenu of “iPhone Components”

Thank you !

Hi @JINCHENLONG
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css

.header__submenu {
  max-height: 300px;
  overflow-y: scroll;
}

That works! thank you!