Page 1 of 1

OWMweatherwidget inner spacing adjustable via css?

Posted: Monday 13 October 2025 10:52
by dekoene
Hi all,

I was wondering if I could make the spaces smaller inbetween the days of the default weather layoutblock:
2025-10-13.png
2025-10-13.png (266.27 KiB) Viewed 42 times
I prefer a 2px space between my blocks but have no idea how to change this one.

Thanks!

Re: OWMweatherwidget inner spacing adjustable via css?

Posted: Tuesday 14 October 2025 14:02
by dekoene
Found it with a little help of chatgpt:

/* Reset all margins first */
.weatherday,
.weatherday_wrapper {
margin: 0 !important;
}

/* Apply spacing only between inner blocks */
.weatherday:not(:last-child),
.weatherday_wrapper:not(:last-child) {
margin-right: 4px !important;
}