Site logo

Archived topic

YouTube Embeds - How to add border-radius ?

3 replies · Started by Paul on January 2, 2023

Viewing posts 1–4 of 4

Hi There,

Happy New Year Team!

I'm trying to add border-radius to a YouTube embed - I'm using the following CSS but can't get it to work (I added a red border just for testing)? Do you know if it's possible to do?

/* YouTube embed */
.wp-block-embed.is-type-video .wp-block-embed__wrapper {
    border: 4px solid #f00;
    border-radius: 40px;
}

Cheers

Hi there,

try hiding the overflow:


.wp-block-embed.is-type-video .wp-block-embed__wrapper {
    border: 4px solid #f00;
    border-radius: 40px;
    overflow: hidden;
}

THANKS David :)

You're welcome

This archived topic is closed to new replies.