Hello
It seems to be that media query or custom CSS on the image does not work. The className for the video is .videoBlueberry
<style>
/* ----------- iPad Pro ----------- */
/* Portrait and Landscape */
@media only screen
and (min-width: 1024px)
and (max-height: 1366px)
and (-webkit-min-device-pixel-ratio: 1.5) {
div#videoBlueberry.videoBlueberry{
position: absolute!important;
margin-top: 50em !important;
}
}
/* Portrait */
@media only screen
and (min-width: 1024px)
and (max-height: 1366px)
and (orientation: portrait)
and (-webkit-min-device-pixel-ratio: 1.5) {
div#videoBlueberry.videoBlueberry{
position: absolute !important;
margin-top: 50em !important;
}
}
/* Landscape */
@media only screen
and (min-width: 1024px)
and (max-height: 1366px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 1.5) {
div#videoBlueberry.videoBlueberry{
position: absolute !important;
margin-top: 50em !important;
}
}
</style>
Here is my site Read-Only: LINK
(how to share your site Read-Only link)