Read the statement by Michael Teeuw here.
MMM-OpenWeatherMapForecast position not budging
-
@sdetweil I found where to change the border at the top after your post and changing that still did not do anything. I did not touch the module css, but below is what I changed in custom css to resize the module and inc the width so it was more landscape view:
.MMM-OpenWeatherMapForecast {
transform: scale(0.75);
}.MMM-OpenWeatherMapForecast .module-content {
width: 650px; /* adjust this to taste */
} -
Okay, I was finally able to access my MM from another computer where the dev window was not painfully slow. I think I have found the attribute that is making the module immovable, but I have been unsuccessful in correctly adding a line in custom.css that will change that position attribute from the picture from “static” to “relative”.
-
try
.module.MMM-OpenWeatherForecast { position:relative !important; }
because the setting is made on a more specific statement you need !important to force override
-
@sdetweil Finally worked! Thank you yet again!
-
@brgracer awesome!!
-