Hello,
I wanted to put a white border around my video to make it stand out.
I’m using the video element but do not see any border options.
Is there code or another element i should be using?
Here is the video http://digitalproductpro.com/
Thanks
Hi marketwithmichael!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.avia-video {
border: 2px solid white;
}
Cheers!
Yigit
Thank you, that worked.
One more quick question.
Can you tell me were to paste this code from font awesome in enfold dashboard?
<link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css”>
http://fortawesome.github.io/Font-Awesome/get-started/
thanks
Hi!
Please add following code to Functions.php file in Appearance > Editor
function fontawesome_css() {
wp_enqueue_style( 'Font Awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css', array(), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'fontawesome_css' );
Cheers!
Yigit