@MMRIZE my current config looks like this
{
module: "MMM-OpenWeatherForecast",
position: "top_right",
config: {
apikey: "xx",
latitude: 30.266666,
longitude: -97.733330,
requestDelay: 1500,
units: "imperial",
forecastHeaderText: "",
forecastLayout: "table",
hourlyForecastTableHeaderText: "",
hourlyForecastInterval: 3,
extraCurrentConditions: {
highLowTemp: true,
precipitation: true,
sunrise: true,
sunset: true,
wind: false,
barometricPressure: false,
humidity: false,
dewPoint: false,
uvIndex: false,
visibility: false
},
hourlyExtras: {
precipitation: true,
wind: true,
barometricPressure: false,
humidity: true,
dewPoint: false,
uvIndex: false,
visibility: false
},
showDailyForecast: false,
}
},
i am trying to edit the column widths on the hourly forecast table. i have tried all of the below in the custom.css, but none seem to work.
.MMM-OpenWeatherForecast .forecast-container.hourly {
table-layout: fixed;
}
.MMM-OpenWeatherForecast .wrapper.table .forecast-container .forecast-item {
table-layout: fixed;
}
.MMM-OpenWeatherForecast .wrapper.table .forecast-container .forecast-item .forecast-icon-container {
width: 30px;
}
ideally, i’d like to set a specific width for each column. e.g., the time is 30 px, conditions are 35 px, temperature is 45 px, and so on.