How do I take off one of the times in the times filter? I want to remove “Night”.
Also, how can I adjust the length of the categories list? Right now if I have more than 5 in the categories list it makes a scroll bar. I don’t want the scroll bar, I just want the list to push the other options down.
You could remove the Night field with CSS using something like this:
#tribe_events_filters_wrapper ul li:nth-child(5) {
display: none;
}
The height issue is odd because it looks correct in my browser (Chrome). If you want to play with the height of the category list, though, you could also hit that with some CSS:
#tribe_events_filters_form .tribe-events-filter-group ul {
/* Your styles */
}
Nevermind. I think I got it fixed.
instead of:
#tribe_events_filters_wrapper ul li:nth-child(5) {
display: none;
}
I used:
#tribe_events_filter_item_timeofday ul li:nth-child(5) {
display: none;
}