03/13/2017 at 1:29 pm
#415435
Keymaster
@ laurelv
The drop down is there… The javascript library which enhances the drop down sets the width auto magically after it is loaded. If it is hidden, such as behind a tab, the item has no width so the library sets the width to 0
.
I added the following to the theme’s custom CSS area and it seemed to fix the issue:
#cn-cmap .chosen-container.chosen-container-single {
width: 250px !important;
}
Hope this helps!