-
How can I increase the border around the video display from 1px to 5px? I know I can change the color from the interface, but how do I change the size?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
Foliovision › Forums › FV Player › How to … › increase video border
Hello Kevin,
You are right, the border colour can be set in FV Player settings -> Skin. The border size can be customized through CSS with this rule:
.flowplayer {
border-width: 5px !important;
}
Notice the ‘important’ attribute – this is necessary because the player itself uses a set of ‘important’ attributes to keep the theme from affecting it. Therefore this rule needs to override other rules as well.
Thank you,
Eduard