Site logo

Archived topic

Legacy Headers in Elements

5 replies · Started by Michael on August 17, 2018

Viewing posts 1–6 of 6

How long will the legacy headers be supported if I do not disable them because I need the video function in the header?

Thank you. That's exactly what I was looking for. Great work!

No problem! :)

Note that the video won't play on a mobile device. In order to have the poster image display nice on your mobile device, I would suggest you add to the css the following (I tested this specifically on my iPhone so you might want to take this a step further and test on other devices including tablets):

@media( max-width: 480px ) {
    video[poster] {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

Otherwise, your poster image may simply be zoomed in on an irrelevant portion of the image.

Cool - thank you for sharing that! :)

This archived topic is closed to new replies.