Borderless Video Player?

Something like

    alert(YouTubeVideo(youtube_id='5wb5HWVh6Fs', 
                       autoplay=True, 
                       spacing_above=None,
                       spacing_below=None
                      ), 
          large=True, buttons=[])


and in theme.css

either find the .modal-body and replace the padding to be zero

.modal-body {
  padding: 0;
  font-size: 16px;
  color: #747474;
}

or just add to the bottom of theme.css:

.modal-body {
  padding: 0;
}
2 Likes