Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #963863

    Hi,
    Since updating to 4.4 the video images have resized. There used to be 3 images across the page. Now they are overlapping and are too big.
    This has also happened on other customers sites where we are using the Enfold theme. I hope you can roll out a fix instead of us having to manually change the code for all sites?
    There is a download icon appeared as well? We do not want to use the video element as the user cannot view full screen, because the option is not available when using the video element.
    Can you help please?
    regards
    Neil

    #965163

    Hey Neil,

    Thank you for using Enfold.

    Looks like you’re using the default WP video shortcode. We had to add this css code to adjust the width.

    .wp-video {
        width: 100% !important;
    }
    

    Please remove browser cache prior to checking the page.

    Best regards,
    Ismael

    #965234

    Thank you Ismael,
    How do we remove the download icon that now appears after upgrading to v4.4 please?
    Thank you
    Neil

    #967398

    Hi Neil,

    Here is a thread for you to consider:
    https://stackoverflow.com/questions/41115801/in-chrome-55-prevent-showing-download-button-for-html-5-video

    or use the css below:

    
    video::-internal-media-controls-download-button {
        display:none;
    }
    video::-webkit-media-controls-enclosure {
        overflow:hidden;
    }
    video::-webkit-media-controls-panel {
        width: calc(100% + 30px); /* Adjust if necessary */
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

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