Styling the Image in Calendar List

If you want to increase the image size in the calendar list, you can do that with a simple bit of css

.wfea-calendar-list .fc-list-item-title div.cal-list-link-wrap div.cal-list-img-wrap img.cal-list {
  height: 5em;
}

You might want to go further and start aligning the content in the row, this is a bit trickier but still can be done with CSS the following shows how that can be done, using grid css for some of that.

Was this helpful?