admin管理员组

文章数量:1418039

This is my first post here. The video on this page is not showing up with smaller resolutions. Will be happy to have a solution. We are using the Jupiter theme for our site.

This is my first post here. The video on this page is not showing up with smaller resolutions. Will be happy to have a solution. We are using the Jupiter theme for our site.

Share Improve this question asked Jul 29, 2019 at 8:38 Rajdeep RoyRajdeep Roy 11 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

This is more of a CSS related issue than a Wordpress one, but it looks like you have a media query which hides the mk-section-video class when the window width is between 1024px and 320px.

Here is the CSS you'll need to remove inside your Jupiter theme stylesheet in order to keep the video displayed

@media only screen and (max-width: 1024px) and (min-device-width: 320px)
.mk-section-video {
    display: none!important;
}

In the Jupiter theme you can add CSS here..... Jupiter > Theme Options > Advanced > Custom CSS

本文标签: themesVideo not showing on smaller resolutions