jQuery-Selectric
jQuery-Selectric copied to clipboard
Height of the whole page is expanded
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;
}
Thank you! It took me awhile to figure out Selectric was causing it and this helped