Read the statement by Michael Teeuw here.
MMM-WunderGround - Display hourly only?
-
Hi is it possible to only display hourly forecasts and hide daily?
I saw there was a fade option, but I was unable to hide the daily forecast.
-
@Camelblack vertical or horizontal layout?
-
@strawberry-3.141 preferably horizontal. Is there a way to fully hide days from vertical (not just fade them) ?
I see the minimum value on days is 1.fcdaycount How many days of forecast to return. Specified by config.js Possible values: 1 - 10 Default value: 7 (7 days) This value is optional. By default the wunderground module will return 7 days.
-
@Camelblack custom.css
.MMM-WunderGround table.small:nth-of-type(3), .MMM-WunderGround hr.hrDivider:nth-of-type(3) { display:none; }
-
@strawberry-3.141 Thank you very much!
Unfortunately it seems that I didn’t implement it correctly.
/***************************************************** * Magic Mirror * * Custom CSS * * * * By Michael Teeuw http://michaelteeuw.nl * * MIT Licensed. * * * * Add any custom CSS below. * * Changes to this files will be ignored by GIT. * *****************************************************/ body { .MMM-WunderGround table.small:nth-of-type(3), .MMM-WunderGround hr.hrDivider:nth-of-type(3) { display:none; }
Isn’t this how it supposed to look in custom.css?
-
@Camelblack no remove
body {
-
/***************************************************** * Magic Mirror * * Custom CSS * * * * By Michael Teeuw http://michaelteeuw.nl * * MIT Licensed. * * * * Add any custom CSS below. * * Changes to this files will be ignored by GIT. * *****************************************************/ .MMM-WunderGround table.small:nth-of-type(3), .MMM-WunderGround hr.hrDivider:nth-of-type(3) { display:none; }
It looks like this now, but the mirror is still displaying 4 days, do I need to change any other files than custom.css?
-
@Camelblack can you share your config
-
@strawberry-3.141 Sure:)
{ module: 'MMM-WunderGround', position: 'top_right', config: { apikey: 'XXXXXXXX', // private; don't share! pws: 'XXXX', //XXXX hourly: '1', fctext: '1', fcdaycount: "3", fcdaystart: "0", hourlyinterval: "4", hourlycount: "4", alerttime: 10000, alerttruncatestring: "english:", roundTmpDecs: 1, UseCardinals: 0, layout: "vertical", sysstat: 0 } },
-
@Camelblack that explains it you’re using vertical, last time i asked you said you want to use horizontal