The default output of the list layout is the following
<List>
<Month>
<MonthTitle />
<Date />
<Events />
<Date />
<Events />
...
</Month>
</List>
What I want to do is this: Wrap each day into a div to so that I can line them all up.
<List>
<Month>
<MonthTitle />
<div>
<Date />
<Events />
</div>
<div>
<Date />
<Events />
</div>
...
</Month>
</List>
I don’t see there a good way to do this in CSS. What would you suggest, @room34 ?