the first number is the horisontal spacing < — >
The second is vertical.
so just change the 0px to say 20px and you will have more seperation between them.
the first number is the horisontal spacing < — >
The second is vertical.
so just change the 0px to say 20px and you will have more seperation between them.
Lookin at your config you have set that it should ignore headlines that are older than what, 4.5 minutes?
Change the ignoreOlderThan:
to at least the default 1 day which is 86400000
Ahh sorry, didn’t read carefully enough.
try this then, should shift the text to the right and let the image pop up next to it
.song {position: relative;}
.song .name {position: absolute; left: 200px;}
you were missing a {
after config:
under the module currentweather
and also one to many ,
under the module weatherforecast
Corrected code :
{
module: "currentweather",
position: "top_right",
config: {
location: "",
locationID: "53.9576", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
appid: "76b503a29647f3a01dd9ba1055daea6d",
}
},
{
module: "weatherforecast",
position: "top_right",
header: "Weather Forecast",
config: {
location: "",
locationID: "53.9576", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
appid: "76b503a29647f3a01dd9ba1055daea6d",
}
},
There is no classes in MMM-CountDown that is called .event .date
or .daysLabel
There is .time
and .week
.MMM-CountDown .week{
color: yellow;
}
.MMM-CountDown .time {
color: orange;
}
The only thing that I see wrong is that the position doesn’t exist.
These are the positions that you can choose from :
top_bar, top_left, top_center, top_right, upper_third, middle_center, lower_third, bottom_left, bottom_center, bottom_right, bottom_bar, fullscreen_above, and fullscreen_below
A reference for the positions (regions) can be found here :
https://forum.magicmirror.builders/topic/286/regions/2
As samson said you are missing a comma after position
But it also likes like you are using a text editor that converts single quotes to smart quotes.
There is a difference between “clock”
and "clock"
.
Use either the Nano text editor if you are working directly on the Pi, if you are working from another pc/mac change your text editor to one that doesn’t convert quotes to smart quotes (like atom, notepad+, sublime or similar)
And, when the value of an variable is a number or true/false you don’t use any quotes at all.
So
{
module: "clock",
position: "top_left",
config: {
timeFormat:12, ------------ Pure number, no quotes
showPeriod:false, ------------ true or false, no quotes
displayType:"both",
analogSize:"400px"
}
},