Rounded corners of uploaded videos?

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
User avatar
cgcreator
 
 
Posts: 38
Joined: Tue Sep 07, 2021 12:03 pm
Location: Germany

Rounded corners of uploaded videos?

Post by cgcreator »

Everything on my homepage is rounded, so it's important that the videos are also rounded. Object Properties/Style/ Radius not work.

I try also this in Html head:
<style>
video {
margin-bottom:10px;
/* Rounded corners (Firefox 5 only) */
-moz-border-radius:14px;
-webkit-border-radius:14px;
border-radius:14px;
}
</style>
Not work
--------------------------------------------------------------------------------------------------
But works with Visual Studio Code!

<!DOCTYPE html>
<html>
<head>
<title>Multimedia CSS Styling: Video with rounded corners</title>
<style>
video {
margin-bottom:10px;
-moz-border-radius:20px;
-webkit-border-radius:20px;
border-radius:20px;
}
</style>

</head>
<body>
<video controls preload="metadata">
<source src="parrots-small.mp4" type="video/mp4">

</video>
</body>
</html>

Screenshot: https://ibb.co/L1qyzdS
----------------------------------------------------------------------------------------------------
Any Tips and Tricks to make it work in wysiwygwebbuilder?
THX
User avatar
Pablo
 
Posts: 23267
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Rounded corners of uploaded videos?

Post by Pablo »

I have tried with the built-in HTML5 video object and that seems to work.

If you need help then please share a demo project.

Image
User avatar
cgcreator
 
 
Posts: 38
Joined: Tue Sep 07, 2021 12:03 pm
Location: Germany

Re: Rounded corners of uploaded videos?

Post by cgcreator »

https://3p-cgi.bplaced.net/VideoProject ... roject.rar
One project made with wysiwygwebbuilder (Video rounded corner not work) and one manual (Works)
User avatar
Pablo
 
Posts: 23267
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Rounded corners of uploaded videos?

Post by Pablo »

The difference is that your code is not responsive. So, it only works when use like this, not with layout grids or breakpoints.

To make the radius work like in your example, add this code in the Page HTML -> Between head tags

Code: Select all

<style>
#MediaPlayer1
{
   position: absolute;
   height: auto !important;
   bottom: 0;
}
</style>
User avatar
cgcreator
 
 
Posts: 38
Joined: Tue Sep 07, 2021 12:03 pm
Location: Germany

Re: Rounded corners of uploaded videos?

Post by cgcreator »

<style>
#MediaPlayer1
{
position: absolute;
height: auto !important;
bottom: 0;
}
</style>

Works!

Thanks a lot, Pablo
Post Reply