I’m building a section that will highlight the current season, meaning that I’d like to swap out an element for the current season, like so:
[fall] (larger/one full row)
[spring][summer][winter] (smaller/in one row)
I believe that the best way to do this is to build 2 sets of 4 elements, and then use conditions to highlight the current season (showing only that element in the top row, and hide it in the lower row).
How do I configure a recurring date range like this? It seems that datetime only compares against a full date (including the year, meaning that it would only work that year), and using numbers doesn’t work as a comparison (for example, “show this element when the month is greater than 5 and the day is greater than 31” doesn’t work because the day will never be greater than 31).