I was able to achieve this with the default weather module.
I duplicated the module so I could remove the space between current and forecast.
Using custom CSS I was able to do the following
.module.weather {
background-color:rgba(0,0,0,0.1);
border-radius:10px 10px 0px;
padding:4px;
margin-bottom:0px;
}
.module.weather2 {
background-image: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0));
border-radius:0px 0px 10px;
padding:4px;
}
I am trying to do the same for MMM-MLB.
I duplicated the module so I could have one with scores and the other with standings.
My custom css looks the exact same other than no gradient.
.module.MMM-MLB {
background-color:rgba(0,0,0,0.3);
border-radius:10px 10px 0px;
padding:4px;
margin-bottom:0px;
}
.module.MMM-MLB2 {
background-colour:rgba(0,0,0,0.3));
border-radius:0px 0px 10px;
padding:4px;
}
I have tried margin-top, and margin-bottom on both with 0px, 0%, 0, I have tried -500px and nothing will change the distance.
If anyone has a suggestion its appreciated.
Thank you.