Read the statement by Michael Teeuw here.
Calendar 'line' - where is the code?
-
I had to search for it
p {…}
applies toelements
.p {…}
applies to all elements with with class “p” eg,
, etc
I don’t know the html code but html5 uses
-
@chrisfoerg Interesting. As I said before, the education process continues! Thanks Chris.
-
@chrisfoerg Ok, in my continuing process, I beg of you again for help! Now I am trying to change the font color for the temperature class defined in the currentweather module. I thought I should use
.temperature {
color: red;
}but no go. I also tried using
.currentweather .temperature {
color: red;
}but also no go… Thoughts?
-
currentweather.js
Line 307:
temperature.className = "bright"; <-- this Line
change to:
temperature.className = "brightt";
in the custom.css
Insert:
.brightt {
color: #FF0000;
}Reboot
-
@Hacksaw Thanks, but is there no way to do so without modifying the actual module js code so that the only changes are to custom.css?