@johnnyboy in your case it is .clock { margin-top: 20px;}
Read the statement by Michael Teeuw here.

Posts
-
RE: Moving a fixed module
-
Defining a module configuration schema standard
As in the last weeks some solutions (MMM-RemoteControl, MMM-Admin-Interface, MagicMirrorApp, MMM-Mobile, etc.), to easily configure the MagicMirror², came out, I would like to define a standard for 3rd party module developers.
How should the configuration structure for modules look like so the developers have to put only effort once to include their modules in all solutions.
I’m pinning some people, who I’m interested on their oppinions:
@MichMich @Jopyth @ItayXD @aschulz90 @yawns @ianperrin @morozgrafix
-
RE: So then, what languages to learn?
@NathTheDude you will need js to give your module some logic, some basic html for the layout and also a bit css for styling.
But you can also write your main logic in nearly every language you want, a couple of people used python for example. Though you would still need a wrapper in js to integrate it to MagicMirror.
-
RE: Turn on and off monitor through HDMI
@RHeniz you can do that by combining those two modules
-
RE: New to Modules, Need help
@randal-io you also have an error in here
if (this.config.lang != "en" || "ru") { Log.error(self.name, "Please enter a supported language into the config."); }
this will always print the error message, it should be
if (this.config.lang != "en" && this.config.lang != "ru") { Log.error(self.name, "Please enter a supported language into the config."); }
-
RE: Hide update notification
@pepemujica remove the module updatenotification from your config