- AuthorPosts
- December 21, 2020 at 2:12 pm #32401BradyGuest
I am using the “Resolve” theme and putting a featured video block into my site. The theme is black/dark and the video puts a hideous thick white border around the Youtube embed and I can’t for the life of me figure out how to get rid of that. Nothing in any advanced controls on post/page builder, nothing in customization stuff in the theme, nothing in the main style.css. If there’s a CSS line that controls that I can’t find it. Help computer.
December 21, 2020 at 2:17 pm #32443Jesse OwensKeymasterHi Brady-
There are two ways you can eliminate that border. First, if you edit your page and switch over to the Text editor, remove the class “bg-video-2” from the div surrounding your video embed. Right now, that line looks like this:
<div class="bg-video bg-video-2 color3-border-color" data-imhwpb-draggable="true">
Removing that class will eliminate the border. Otherwise, you can add this line of Custom CSS in your Customize > Advanced > Custom JS & CSS menu:
.bg-video.bg-video-2 iframe { border: none; }
- AuthorPosts
- The topic ‘Removing white border on featured video block’ is closed to new replies.