A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
How to turn compliments blue?
-
Hi,
I would like the compliments text of the default compliments module to be in blue instead of white. I think this can be done with custom css but I struggled with the instructions in the pinned post. If someone would please give me a shortcut of how to do it, I would really appreciate your help.
Thanks
-
@raspberrypi9 which pinned post?
says there is a classes config property
{ module: "compliments", position:"....", config:{ classes:"thin xlarge bright", // default if not specified ... } }
so, you could override one of those
.compliments .xlarge { color: xxxxx; }
or you could add another classname and configure that
{ module: "compliments", position:"....", config:{ classes:"thin xlarge bright foo", // default if not specified, this replaces entire list ... } }
like this
.compliments .foo { color: xxxxx; }
-
That worked great! Thank you so much for taking the time to answer my question.