A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Overlapping modules?
-
Hey so I’m wondering how I can overlap elements? I want to put my analog clock on top of the MMM-Globe. How could I possibly fix that?
-
@MobbareKurtZ using css position and z-index.
Something like this in the custom.css
.clock { Position: absolute; Left: 200px; Top: 200px; Z-index: 4; }
The clock and globe module should share the same region in the config and the clock module should be before the globe module in the config list.
-
@broberg That worked, thanks!