Hi Forum,
After I applied the last update of MagicMirror (2.27.0), the weather module does not display the icon of the current weather anymore. Instead, it shows only a square (like the icon is broken).
I really appreciate any help.
Extract of the module config (from config.js):
{
module: "weather",
position: "top_left",
disabled: false,
config: {
weatherProvider: "openweathermap",
type: "current",
location: "Fürth",
locationID: "2923544", //ID from http://bulk.openweathermap.org/sample/city.list.json.>
apiKey: "70908162b9e2f94e913zxxxxxxed76b425",
// decimalSymbol: ",",
roundTemp: true,
// onlyTemp: "true",
appendLocationNameToHeader: true,
initialLoadDelay: "1000",
showHumidity: "wind",
showWindDirection: true,
showWindDirectionAsArrow: false,
windUnits: "metric",
useKmh: "true",
showSun: false,
useBeaufort: false
}
},
Extract from custom.css:
.weather .weathericon,
.weather .fa-home {
font-size: 130%;
line-height: 170px;
color: #aaa;
display: inline-block;
transform: translate(0, -3px);
transform: translateY(0%);
}
.weather {
font-size: 125px;
}
Thank you