12/27/2018 at 12:48 pm
#480271
Keymaster
@ linda
I just emailed you the download link and instructions. Let me know if you do not receive it.
You should disable the category search and keyword search in Slim Plus by using the enable_search and enable_category_select shortcode options. Here’s an example shortcode:
[connections enable_category_select=false enable_search=false]
You add these options to the existing shortcode on the page, do not add it as a second instance.
Here is the CSS to change the color. Add it to your theme’s custom CSS area, generally found in the Customizer.
/* The following CSS are the selectors required to change the colors. */
.select2-container--sscit .select2-selection--single {
border: 2px solid #706a0b;
}
.select2-container--sscit .select2-selection--single .select2-selection__arrow {
background: #706a0b;
}
#cn-multi-category-search select, #cn-multi-category-search input[type=text] {
border: 2px solid #706a0b;
}
.select2-container--sscit-radius .select2-selection--single {
background-color: #706a0b;
border: 2px solid #706a0b;
}
.select2-container--sscit-radius .select2-selection--single .select2-selection__arrow {
background: #706a0b;
}
#cn-multi-category-search button#cnmcs-search-submit {
background: #706a0b;
border: 2px solid #706a0b;
}
.select2-container--sscit .select2-dropdown {
border: 2px solid #706a0b;
}
.select2-container--sscit .select2-results__option--highlighted[aria-selected] {
background-color: #706a0b;
}
.select2-container--sscit-radius .select2-dropdown {
border: 2px solid #706a0b;
}
.select2-container--sscit-radius .select2-results__option--highlighted[aria-selected] {
background-color: #706a0b;
}
Hope this helps, let me know.
