Tagged: video on mobile
Is there a reason that videos do not stream on mobile? Is this intentional? I placed a video on the website as a background and it does not play on mobile. Shows a play button but does not play. The only way to play it on mobile is to upload it as a video using the video block but you must still click on play. Again, is this by design?
Also, how do you force the hamburger menu on mobile phones and landscape on tablets? In landscape on the phone the logo covers the navigation – it is a mess. Even on your demo sites. Same for landscape on tablet.
Hey pamk21,
Yes, it’s by design, since some platforms like IOS do not support autoplay videos by default.
Please try this in Quick CSS if you want the mobile menu on tablets as well:
@media only screen and (max-width: 1024px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
Best regards,
Rikard