Skip to main content

Lesson Featured Image Display

It's great that we can add a featured image to each lesson. But not so great is its fixed display size of 60px x 48px

When an image is uploaded the 150x150 thumbnail is selected, then object-fit: fill is used.

So images are always distorted, unless you use...

.fcom_course_sections .lesson_feature_media img {
    object-fit: scale-down;
}

...but then it's square.

The only other way around it is to make sure the uploaded image is 60x48, but how many clients are going to do that? 🀣