Video element with rounded corner?

Hi there

Has anyone a trick how to add rounded corners to bubble’s video element? An easy addition with CSS would also help me.

Thanks in advance!

Border-radius should do the trick here.

e.g. #elementID{border-radius: 10px !important}

If that doesn’t work, you could simply try to put it in a group with rounded corners?

thanks @reger-alexander for your tips. I thought the same, unfortunately both does not work.

Where are you putting the code?

Use an html element with style tags

I just tried it and putting it in a group with rounded corners works for me.
Make sure the group has overflow hidden, i.e.

#parentgroup{overflow:hidden !important;}