Reply To: Page Header video doesnt show on mobile version

Home Forums Support Page Header video doesnt show on mobile version Reply To: Page Header video doesnt show on mobile version

Home Forums Support Page Header video doesnt show on mobile version Reply To: Page Header video doesnt show on mobile version

#190622
Tom
Lead Developer
Lead Developer

I know that Jetpack has a mobile theme module.

However, if you want to add a background image to that page, you can use our Simple CSS plugin: https://wordpress.org/plugins/simple-css/

Then when editing the page, add this into the Simple CSS metabox:

@media (max-width: 768px) {
    .page-header-content {
        background-image: url(URL TO YOUR MOBILE BACKGROUND IMAGE);
        background-size: cover;
    }
}

Let me know if that works or not 🙂