• Anonymous User 16123990

    (@anonymized-16123990)


    Hi, I’m wondering if there’s any specific code I can add to the video to hide the controls, but on a video by video basis rather than all videos on the site.

    So in the text aspect, it’s [video width="1280" height="720" mp4="https://wastedrockstars.com/wp-content/uploads/2018/05/Untitled1.mp4" loop="true" autoplay="true" preload="auto"]
    I’m not sure if you can just add a line to that but I really don’t want the media controls showing even if you hover over it.

    While not related, I’m wondering if anyone knows any plugins to hide the wp-content aspect or change it to a different name also.

    Cheers.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi you need to override the inline styles applied to .mejs-controls div for that video shortcode. You can:

    .mejs-controls {
      display: none !important;
      visibility: hidden !important;
      }

    These controls normally only show on hover unless you tell them to do otherwise.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Controls from Media Video?’ is closed to new replies.