@doubleT For my travel module, the line doesn’t dissapear even though I leave header empty :confused_face: Do you know how to remove the line in some other way?
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
M
Latest posts made by magicmarc
-
RE: Changing the length of the line under the header
-
RE: Trying to change size of currentweather module driving me nuts...
Right… Thank u guys very much. This clarifies so many things!
-
Trying to change size of currentweather module driving me nuts...
I have my currentweather module set to only show the weather icon and the degrees. I’m trying to make it smaller.
So, this should work right? In custom.css:
.currentweather { font-size: 20px; }
No, it doesn’t.
Saw someone adding tableClass to config.js. How about now!?:
{ module: "currentweather", position: "top_center", config: { location: "my-location", appid: "my-api-key", tableClass: "small", onlyTemp: true, } },
Nope.
Ok, let’s try copying currentweather.css into my custom.css and changing it from there?:
.currentweather .weathericon, .currentweather .fa-home { font-size: 75%; /*I TRIED CHANGING THIS!!!*/ line-height: 65px; display: inline-block; -ms-transform: translate(0, -3px); /* IE 9 */ -webkit-transform: translate(0, -3px); /* Safari */ transform: translate(0, -3px); } .currentweather .humidityIcon { padding-right: 4px; } .currentweather .humidity-padding { padding-bottom: 6px; }
Sorry bro, doesn’t work.
Anyone with an answer to this? Thank you so much in advance…