Change widget width and height

Add this code to the Custom CSS field on the Style tab of your Weather widget’s settings:

.global-styles,
.eapp-weather-weather-component {
max-width: 600px !important;
}

.eapp-weather-weather-detail + * {
height: 500px !important;
}

*:has(> .eapp-weather-daily-item-component) {
display: flex;
flex-direction: column;
}

.eapp-weather-daily-item-component {
flex-grow: 1;
}
1 Like