Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1303584

    Hi – a couple issues:

    I have a fullscreen slider with a Vimeo video, looks fine on the PC but on mobile the controls aren’t visible – just the fallback image, and when I click it opens the video in a lightbox. I add a video element underneath, but it’s not stretching fullscreen (due to some “width: 85%” css that I’m using to make sure there’s a bit of space on the side of my content in certain areas). https://imgur.com/9LdSKBN
    Can you give me a way to either show the controls on the mobile slider, or make the video element fullscreen?

    Also, on the PC, the controls don’t allow for scrubbing forward in the video – can that be enabled?

    Maybe related issue, I need my mobile header to be 100% width instead of 85% like it is now: https://imgur.com/P6V64s9
    I need it like this so the logo is all the way at the left: https://imgur.com/fvhGzuP

    thanks
    Nancy

    • This topic was modified 3 years, 5 months ago by Munford.
    #1304286

    Hey Munford,
    Sorry for the very late reply and thanks for the link to your page.
    To set the header and the mobile video to 100% please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) { 
    .responsive #top.home #wrap_all #mobile > .container,
    .responsive #top #wrap_all #header_main > .container {
        width: 100%!important;
        max-width: 100%!important;
    }
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area.

    Best regards,
    Mike

    #1306967

    thanks, that helped with the width issue.
    I still don’t see the video controls on mobile – I know I could replace it with a regular video element, just on small screens,
    but it doesn’t go fullwidth (see below).
    Any advice?
    Nancy

    #1307133

    Hi,
    Glad to hear that helped, your last screenshot didn’t work please try again, when I look on your homepage the Vimeo video has controls, please see the screenshot in the Private Content area.

    Best regards,
    Mike

    #1307153

    HI
    thanks for taking a look. I added a regular video element to show the controls on mobiles. I was just wondering if there was a way to display them when using a video background element, since it then goes fullscreen. If not, it’s fine like this.
    Nancy

    #1307524

    Hi,
    Sorry for the late reply and thank you for your patience. Unfortunately, I didn’t find a way to show the video controls on a background video, but I did come up with this css to make your video element show fullscreen for mobile.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top.home #wrap_all #av_section_1 > .container {
        width: 100%!important;
        max-width: 100%!important;
    }
    .responsive #top.home #wrap_all #av_section_1 > .container > .content {
    	padding: 0px !important;
    }
    .responsive #top.home #wrap_all #av_section_1 > .container > .content > div > div > .avia-video {
    	    margin-bottom: 0 !important;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1321182

    thanks
    you can close this thread.

    #1321195

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘mobile video controls, header width’ is closed to new replies.