In the event.css file there seems to be missing the font size declaration in the start class so the start of the event always has bigger text than the rest of the multi-day event.
Just fix by adding the font size declaration like so.
.event-calendar .start {
font-style: normal;
color: #555;
margin: 2px 0 2px 0;
padding-left: 3px;
font-size: 0.8em;
}
Comments
Comment #1
killes@www.drop.org commentedcan anybody else comment on this?
Comment #2
Cactii1 commentedThe original CSS file looks like this so the Start font size is whatever your theme makes it be. If it isn't the same as the font size declaration in the ".event-calendar .end" then the start may be different.
My theme default font size is larger so my start date text was always larger than the rest - I fixed it by adding the font size declaration in the ".event-calendar .start".
Comment #3
killes@www.drop.org commentedok, I got it, thanks!