Tagged: 

Viewing 21 posts - 1 through 21 (of 21 total)
  • Author
    Posts
  • #767366

    Dear Kriesi,

    On the home page of my website (link below) I have a video playing inside a full width easy slider. This works fine on my laptop, and on mobiles the fallback image displays correctly.

    However, on an iPad Pro using Chrome and Safari, there is a glitch with an extra image appearing top left next to the main image.

    Do you know what is causing this and how I can fix it?

    Thanks, Richard

    #768150

    Hey Richard,

    I am not able to reproduce the issue using an emulator. I will ask my teammates to check your website. Please kindly wait to hear from them

    Best regards,
    Yigit

    #769347

    Thank you Yigit

    #769962

    Hi Yigit,

    I am including a link below to a screenshot showing the problem on iPad.

    The full width easy slider should display the video right across the width of the page, and does so on the laptop and iPhone. But on the iPad it displays the video narrower, and what looks like the fallback still image to the top left.

    I hope we can find a solution ASAP.

    Thanks, Richard

    #771425

    Dear Kriesi,

    Are you able to update me on this issue with the Full width Easy Slider incorrectly displaying both the video and fallback background image side-by-side on the iPad (safari & chrome) as shown in my screenshot?

    This one issue is stopping my client from signing off on the project

    Is there an interim fix such as hiding the fallback background image on iPad in css?

    I really hope you can help

    Thanks, Richard

    #772183

    Hi,

    What is the actual model of the iPad Pro where you’re testing this? We need to know so that we can test it on the right device. Please try this in the Quick CSS field.

    @media only screen 
    and (min-device-width : 1024px) 
    and (max-device-width : 1366px) { 
      /* STYLES GO HERE */
      .av-video-slide .mejs-mediaelement {
        display: none !important;
      }
    }

    This should remove the video on iPad Pro devices.

    Best regards,
    Ismael

    #772857

    Thanks Ismael,

    Should I ask them whether it is the 12.9″ or the 9.7″ model?
    Is there anything else about the specification that has a bearing on this?

    They had the same problem on both Safari and Chrome on the iPad Pro

    Thanks, Richard

    #773041

    Hi Kriesi,

    We’ve seen the issue on both the iPad Pro and the standard iPad when used in landscape mode.

    Rather than disabling the video on iPad, how can I disable the fallback image, so that just the video is displayed?

    Thanks, Richard

    #773645

    Hi!

    We need to know the actual resolution of the device so that we can provide the correct css media query. The video is not going to play on the device so you have to disable it. Is the css code working?

    Regards,
    Ismael

    #775456

    Hi Kriesi,

    We originally noticed the problem on a 12.9” iPad Pro.

    Someone else had the problem on an old iPad 1 or 2, which would probably have been 9.7”

    I have also tried on an iPad air and it does the same thing.

    I’m getting a feeling that any iPad in landscape mode will do it.

    #775766

    Hey!

    Did you try the css solution above? If it’s not working, use this:

    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1366px) { 
      .av-video-slide .mejs-mediaelement {
        display: none !important;
      }
    }

    Cheers!
    Ismael

    #776622

    Thanks Ismael,

    I’m afraid that when iPads are turned horizontally the problem still occurs after trying both these fixes.

    It seems to be a fairly universal problem on iPads

    Best wishes,
    Richard

    #777181

    Hi!

    We modified the css code a bit. Please try it again.

    // https://kriesi.at/support/topic/full-width-easy-slider-video-on-ipad/#post-775766

    Cheers!
    Ismael

    #777321

    Thanks Ismael,

    I’m afraid it’s still exactly the same

    #778356

    Hi!

    In the screenshot, there are two images. Is one of those supposed to be the fallback image? I’m a bit confuse because I’m not sure if you can see the video in the iPad Pro device or not.

    // http://www.tonicanalytics.com/wp-content/uploads/2017/03/IMG_0186.jpg

    If possible, please hire a freelance developer to inspect the issue because we can’t reproduce the issue on our demo.

    Best regards,
    Ismael

    #778510

    Dear Ismael,

    Both the large image and the small image are static, so it seems that the fallback image of the Full Width Easy Slider videos is being displayed twice, side by side, at large size and small size on iPads.

    I’ve had several people complain about this issue on both iPads and iPad Pros

    Thanks, Richard

    #779052

    Hi!

    Thank you for the info.

    This is the first time that someone reported the issue so it’s most likely an issue with a plugin or a custom modification in a theme. Please try this css code instead.

    @media only screen
    and (min-device-width : 768px)
    and (max-device-width : 1366px) {
    	.av-mobile-fallback-image:nth-child(0) {
    		display: none !important;
    	}
    }
    

    If it doesn’t work, use this one.

    @media only screen
    and (min-device-width : 768px)
    and (max-device-width : 1366px) {
    	.av-mobile-fallback-image:nth-child(1) {
    		display: none !important;
    	}
    }
    

    If none of the code is working, please try the following css code to remove the fallback image completely.

    @media only screen
    and (min-device-width : 768px)
    and (max-device-width : 1366px) {
    	.av-mobile-fallback-image {
    		display: none !important;
    	}
    }

    Regards,
    Ismael

    #779696

    Thanks Ismael,

    The first option resulted in a slight change in the rendering, but once drawn, the result is unchanged. The small unwanted image draws first, then the main image appears.

    The second and third options meant that the Full Width Easy Slider did not appear at all (neither the large image or the small duplicate image)

    All tested on a standard iPad running iOS 9.3.5

    #779763

    Hey!

    Thank you for the update. I will ask the rest of the support team to check the issue.

    Cheers!
    Ismael

    #780434

    Thanks Ismael,

    Is there an alternative way I could achieve the full width video playing with text overlaid? To avoid this problem with the Full Width Easy slider on iPads.

    I’m getting desperate as the client won’t sign off on the project while this one bug is still happening.

    Best wishes,
    Richard

    #780986

    Hey!

    Have you tried the color section’s background options? Can you reproduce the same issue on our demo?

    // http://kriesi.at/themes/enfold/homepage/home-v9-videos-and-parallax/

    Best regards,
    Ismael

Viewing 21 posts - 1 through 21 (of 21 total)
  • You must be logged in to reply to this topic.