codrops / SimpleDropDownEffects

A jQuery plugin for transforming select inputs into drop-down lists with some simple expanding effects.
446 stars 110 forks source link

more list to scroll #12

Open Santoshah opened 10 years ago

Santoshah commented 10 years ago

This plugin is great. I really likes its UI and features. Thank you for creating such an lovely plugin.

I have an issue.

I have lots of option list. Its more than 50. So when I click on dropdown it drop very long to bottom. I am wondering if I could fixed the height of the dropdown list and add a custom scrollbar. is it possible ?

Hydraner commented 9 years ago

Have you tried giving the the list a max-height with overflow scroll? Something like this should work: .cd-dropdown ul { max-height: 100px; overflow: scroll; }