- This topic has 2 replies, 2 voices, and was last updated 10 years, 3 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › How to set up scrolling checkboxes
I was wondering how to set up checkbox options for ‘post meta’ in a fixed height scrolling frame like ‘genres’ on the movies demo page here:
http://demo.designsandcode.com/sfpro-movie-reviews/
I have them set up as a regular vertical list of checkboxes however I can’t find the option to have them shown inside the scrolling frame.
Thank you.
Hey John
This was actually just a bit of custom CSS I added:
.searchandfilter > ul > li[data-sf-field-input-type="checkbox"] > ul, .searchandfilter > ul > li[data-sf-field-input-type="radio"] > ul {
max-height: 150px;
overflow: auto;
}
Thanks!