A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Make compliments_plus bold
-
How do I make the compliments bold, I tried the following in custom.css to no avail. What makes the text bold?
.compliments_plus { display: bold; font-weight: bold }
-
This doesn’t work either
display: inline-block
-
@swvalenti this =>
.compliments_plus .pre-line { font-weight: bold; }
You can also change colors under same custom.css like this ->
.compliments_plus .pre-line { font-weight: bold; color: white;
OR you can even change color of icon and font at the same time =>
.compliments_plus .pre-line { font-weight: bold; color: white; } .compliments_plus .wi, .compliments_plus .fa { color: yellow; }
OR just one at a time =>
.compliments_plus .pre-line { font-weight: bold; color: white; } .compliments_plus .fa { color: yellow; } .compliments_plus .wi, { color: green; }
Hope that helps :)
-
@cowboysdude said in Make compliments_plus bold:
.compliments_plus .pre-line {
font-weight: bold;
}You are the man as usual thanks for much for taking the time to help and explain. You rock it worked just like you said!
-
@swvalenti Glad you got it working :) Enjoy my friend.
-
This post is deleted!