Read the statement by Michael Teeuw here.
2 modules side by side
-
@MMRIZE Never Mind, I’ve got it looking kinda of right now, I have added 2 more lists, so now I have travel time, list1, list 2 and list 3, only thing left is maybe if I could add some padding between them?
-
@GodSmackedOrange well center is the center region,
top is across all left/center/right
-
Got it guys,
So I have MMM-GoogleTravelTimes and 3x MMM-AnyLists all in the top_center,
I used the following code from MMRIZE and added a margin to creating padding between modules, code below -
.region.top.center .container .module {
float: left;
max-width: 32%;
margin: 0 50px;
}Thanks guys!!
-
-
@GodSmackedOrange said in 2 modules side by side:
.region.top.center .container .module {
float: left;
max-width: 32%;
margin: 0 50px;
}I tried this along with another post and I get the same thing. The two weather modules go next to each other, but they end up in the same spot. The one module isn’t at the same hieght as the other.
-
Just a FYI, it may also work thusly:
/* adjust modules to display side by side */ .MMM-ValuesByNotification, .MMM-OpenWeatherForecast { display: inline-flex; margin-right: 5px; margin-left: 5px; }
the catch is that you have to have the modules in your config in the exact order you do in this css entry.