Please manually type double quote (“) around your location Concept-Coiffure instead of copying the double quote.
It was already working with the previous “” but colors and bold do not show up.

-
This reply was modified 9 years, 5 months ago by
hubthomas.
I think I found out my mistake. I manually put the classes in my style.css file. I now want to only have the closed or open option in color. Not the whole sentence. It that possible ?

[UPDATE] Just found out that is not the proper way to do it :/

-
This reply was modified 9 years, 5 months ago by
hubthomas.
<li><i class="fa fa-clock-o"></i><span class="mbhi-is-current mb-bhi-oc-text mb-bhi-open mb-bhi-closed"><?php echo do_shortcode('[mbhi location="Concept-Coiffure"]'); ?></span></li>
.mb-bhi-oc-text {
font-weight: bold;
}
.mb-bhi-open {
color: green;
}
.mb-bhi-closed {
color: rgba(241, 17, 76, 0.83);
}

Hi @hubthomas,
The plugin outputs spans with classes on them as well. You can directly style those with CSS. Here is a list of classes that are part of the output:
http://maartenbelmans.com/businesshoursplugin/#styling
The classes you need are mb-bhi-open (for the green text) and mb-bhi-closed (for red text).
Your solution also works of course, just thought I’d add this reply 🙂