Read the statement by Michael Teeuw here.
custom.css ......body???
-
@piki see main.css for the defined colors and styles
if nothing there that works for you, then you have to define your own (in custom.css)
-
if I would like to move the clock or the weather more towards the center from the edge, do I have to write it in config.js? is that so
-
@piki in config.js are only the defined positions.
see https://forum.magicmirror.builders/topic/286/regions?_=1732038547578otherwise you have to use css to adjust things.
note that main.css defines margins around modules and the overall screen
so you may have to adjust margins
-
thank you very much for all the advice so far…you have helped me a lot
-
can be changed language in openmeteo weather?
-
@piki not separately from the mm language setting, which is set up at the top, before the modules:[] list
-
I don’t understand
-
@piki you can set the language for MagicMirror in config.js
var config = { address: "0.0.0.0", port: 8090, basePath: "/", language: "en", <----- here serverOnly: "local", locale: "en-US", <--- and here modules: [ <---- after here is module configuration
-
so I have it now…the clock shows me in “sk” language but the weather in “en”…???
language: "sk", locale: "sk-SK", logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging timeFormat: 24, units: "metric", modules: [ { module: "clock", position: "bottom_left" }, { module: "weather", position: "bottom_right", config: { weatherProvider: "openmeteo", type: "current", lat: 48.7164, lon: 21.2611, units: "metric", showForecast: true, forecastLayout: "horizontal", showSun: true, lang: "sk",
-
@piki right… there are two problems
- it should follow the system config - but doesn’t
- user should be able to override that - but can’t