• Hi there!

    Just a simple question: when i hit the play button and the video begins to play there is always a dotted border around the video. I tried to give all div’s belong to the video a border:none but the problem is still there.

    How can i turn of the dotted border?

    Thanks for your help

    Regards Thomas

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Kyle Gilman

    (@kylegilman)

    I don’t see a dotted border in Chrome on a Mac, but I suspect this is built-in browser behavior that shows the video has focus. What browser are you testing in? You could try :focus {outline:none;} on the video elements, although there can be accessibility issues with that.

    Thread Starter visueller

    (@visueller)

    Great! This helps Bro! I use Firefox developer edition.

    Buy the way… on iPhone i wanted to play auto the video with the earth ball – this needs a playsinline right? I read in one of your posts somwhere that it is not included in your great plugin right? is there a workaround?

    Regards Thomas

    Plugin Author Kyle Gilman

    (@kylegilman)

    You’d have to add it to the code manually I think. I’m not in a position to do the testing necessary to release a new version thanks to too much dayjob and not enough childcare. Find the line in the main plugin file

    $code .= "\n\t\t\t\t".'<video id="video_'.$div_suffix.'" ';
    and change it to
    $code .= "\n\t\t\t\t".'<video playsinline id="video_'.$div_suffix.'" ';

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Dotted border around the video’ is closed to new replies.