lcdsantos / jQuery-Selectric

jQuery plugin for easy manipulation and customization of HTML selects
http://selectric.js.org/
MIT License
727 stars 157 forks source link

Height of the whole page is expanded #203

Open spwin opened 7 years ago

spwin commented 7 years ago

I am using selectric with Plus Theme. After the initialisation the page height is resized to the height of all the select items list. example

To fix this you need to modify the css file:

.selectric-items {
  display: none;
}
.selectric-open .selectric-items {
  display: block;
}
jdavis commented 6 years ago

Thank you! It took me awhile to figure out Selectric was causing it and this helped