A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Space Between Two Modules
-
Hi, I’m trying to add some space between two different modules following the instructions here ( https://forum.magicmirror.builders/topic/2435/space-between-analog-clock-and-data/2) , but I can’t really make it work.
Somebody knows a simple way to add space between two different modules ( compliments and newsfeed in this case) ?.
Thanks!
-
@ArkantosArk Assuming both modules are configured for the same region, you can add some bottom margin in
custom.css
, as follows:.module.compliments { margin-bottom: 50px; /* play with this until you're happy. */ }
Keep in mind that there is likely already some margin defined – this will override whatever is set – so it’s possible that 50px is actually LESS than what is there. Keep playing with the number until you’re happy.
-
@j.e.f.f It worked! thank you!