@Mykle1 Well, I applaud your efforts (it’s getting rarer in this messed up country) … I hope someday to figure this stuff out to a point where I can help another newbie. Thanks again!
Read the statement by Michael Teeuw here.
Best posts made by jproehl
-
RE: Throwing down the gauntlet
-
RE: New Raspberry Pi Zero W
@cowboysdude Great! Thanks, I’ll check it out. I’m trying to make a very compact mirror and the Pi Zero would assist the design, especially with the new wireless version of the Pi Zero just released.
-
RE: Throwing down the gauntlet
@jbeck615 Hi: That problem went away when I fixed a missing close bracket “}” in the custom.css. So, if you are getting the extra icon line in your current conditions display for the same reason I was, check to make sure that all of the entries in custom.css are of the form:
.“modulename” .“className” {
“parameter”: “value”;
}A concrete example of this is:
.clock .time {
color: #99F;
}One of my entries was missing that very last bracket. When I fixed that, the icon line went away and all the subsequent parameters that I was trying to change in the custom.css file also got changed.
I suspect that when that syntax error showed up the rest of the custom.css file was not processed and the parameter on which I left off the bracket and all the subsequent ones were never included.
Hope this helps! Good luck.