Webflow sync, pageviews & more.
NEW

Can I add rounded corners to Youtube videos and remove all icons except for the play button on the videos in Webflow?

TL;DR

Yes, you can add rounded corners to YouTube videos and customize the video player controls in Webflow. Here's how you can achieve this:

1. Add a YouTube video to your Webflow project:
- Drag and drop an Embed element onto your Webflow canvas or into a desired container.
- Click on the Embed element, and in the settings panel on the right, paste the YouTube video's embed code in the "Embed Code" field.

2. Styling the YouTube video:
- To add rounded corners to the video, you can select the Embed element and add custom CSS to give it a border-radius property. For example:
```css
.embed-container {
border-radius: 8px;
overflow: hidden;
}
```

3. Customizing video player controls:
- By default, you cannot directly manipulate the YouTube player controls. However, you can use YouTube's Player API to hide the default controls and implement custom controls. Here's how you can do it:
- Add a `

` element to your Webflow project where you want to display the video player controls.
- Give the `
` an ID, e.g., `player-controls`.
- In the custom code section of your Webflow project settings, add the following code to enable the YouTube Player API and hide the default controls:
```html