Reputation: 533
Could anybody advise me how to remove the black border around the box in which the video is displayed on the homepage of http://yasawahomestays.com/ ?
Upvotes: 5
Views: 11140
Reputation: 2414
I had the same issue. I solved it by setting the CSS style for video tag:
outline: none;
Upvotes: 1
Reputation: 31
I think in your css. Change the names though:
.video-js .vjs-tech {
top: -2px;
}
.video-js {
overflow: hidden;
}
Credits to : Unwanted border appearing on video element
Upvotes: 0