01/10/2017 at 8:57 am
#406259
Keymaster
@ Willem Van Oort
re: Can you let me know the css to change the colour of the category bar dropdown to black.
The enhanced category drop down is actually a third party library. Changing it style is pretty difficult. But this will change the face of it black.
.chosen-container-single .chosen-single {
background: black !important;
border: black !important;
}
.chosen-container-single .chosen-default {
color: white !important;
}
The default coloring does fit very nicely already into the theme. I’d suggest leaving it as is.
re: is there a way of adding text just above this: “Pick your Category”?
Sure, edit the page and type it above the shortcode.
**re: **
Can you also give me the CSS to highlight specific category entries – eg with background colour?
Sure, this CSS will make the back ground color of all entries in the “Bars” category pink:
#cn-cmap div.bars div.cn-entry {
background: pink !important;
}
Tweak as desired.
Hope that helps!
