Wider frame visible on course featured image / video in course overview (Simplylearn)

In the course overview, often an unnecessary frame part is showing under the featured image / video. This is even more prominent in mobile view. See screenshots.

[attachments are only viewable by logged-in members][attachments are only viewable by logged-in members]

  • Predrag Dubajic
    • Support

    Hi morfjord,

    Thanks for the report, it looks like there are some CSS issues video on smaller screens.

    I have reported this to our developer and in the meantime you can try out this CSS fix:

    .course-video {
    min-height: initial;
    }

    @media screen and (min-width: 1369px) {
    .course-video .video_player {
    min-height: 281px;
    height: auto;
    }
    }

    @media screen and (max-width: 1368px) {
    .course-video .video_player {
    min-height: 100px;
    height: auto;
    }
    }

    You can use plugin like this one for this additional CSS.

    Best regards,

    Predrag