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.
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.
Try this Custom CSS:
.select2-container {
width: 100% !important;
}
.searchandfilter .select2-container–default .select2-selection–multiple .select2-selection__choice {
background-color: #F58634;
border-radius: 0;
}
Works perfectly – thanks = resolved
Can you try with this added specificity (your theme seems to be setting the color):
.searchandfilter select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #F58634;
border-radius: 0;
}
.searchandfilter .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #F58634;
border-radius: 0;
}
.searchandfilter .select2-container--default .select2-results__option[aria-selected=true] {
background-color: #F58634;
border-radius: 0;
}