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

killes@www.drop.org’s picture

Status: Active » Postponed (maintainer needs more info)

can anybody else comment on this?

Cactii1’s picture

The 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".

.event-calendar .start {
  font-style: normal;
  color: #555;
  margin: 2px 0 2px 0;
  padding-left: 3px;
}
.event-calendar .end {
  font-style: normal;
  color: #555;
  margin: 2px 0 2px 0;
  padding-left: 3px;
  font-size: 0.8em;
}
killes@www.drop.org’s picture

Status: Postponed (maintainer needs more info) » Fixed

ok, I got it, thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.