A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Can't get module background to change
-
in my custom.css file I have this code:
body { color: #aaa; } .dimmed { color: #000 } .normal { color: #000 } .bright { color: #000 } .module.clock { background.color: rgb(255, 255, 255); opacity: 0.5; border-radius:8px; padding:8px; }
And it won’t work. I can change the dimmed/bright/normal colors and it changes, so I know it’s reading the file. However I can’t get the opaque background around the module at all.
} -
@memphismark said in Can't get module background to change:
background.color: rgb(255, 255, 255);
it should be as below, notice the - (dash) instead of . (dot)
background-color : rgb(255, 255, 255);
-
@ashishtank
Thank you ! A classic case of the 2% threshold! (you must be at least 2% smarter than what you’re operating to operate it properly) -
@memphismark :beaming_face_with_smiling_eyes: