04/26/2016 at 9:58 am
#374229
Keymaster
@ James
You are seeing this result because the WP Job Manager plugin has this CSS statement:
.chosen-container {
width: 100%!important;
}
The !important flag is overriding the style for Gridder which sets its width. So, to fix this we’ll have to override the override. Add the following to the theme’s custom CSS area:
#cn-gridder .chosen-container {
width: 250px !important;
}
That should fix it. Hope that helps!
