Hi there, you've placed some !important styles in your bootstrap.min.css - in my case the name of a group in group jive.
This is annoying every time you update CB components, as I have to correct the file once again.
Would be very pleasant, if you could strip out those !important styles to enable us to override the default template without additional effort.
Thx in advance,
MO
Ah, sorry - just found the default plugin. Didn't come to my mind that it could be for this matter as I searched for "template" and the default plugin wasn't shown
The !important in bootstrap.css are added by Bootstrap itself. Give your CSS more weight then add !important and you'll override it. Example as follows.
Bootstrap:
Code:
.cb_template .text-primary {
color: blue !important;
}
Custom CSS
Code:
.cb_template .myclass .text-primary {
color: red !important;
}
CB provides a built in means of overriding CSS that takes care of load order for you so you don't even need to do the above. See the below on how to add CSS overrides to CB.
This would allow the below to work fine due to load order giving more weight to override styles.
Code:
.cb_template .text-primary {
color: red !important;
}
Kyle (Krileon) Community Builder Team Member Before posting on forums:
Read FAQ thoroughly
+
Read our Documentation
+
Search the forums CB links:
Documentation
-
Localization
-
CB Quickstart
-
CB Paid Subscriptions
-
Add-Ons
-
Forge
-- If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
-- If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please
send me a private message
with your thread and will reply when possible!
-- Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
-- My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.