renato6
Member
Posted 10 months ago #
Hello,
when i click on a video to show, with the video playing i have a white border by default, like in the thumbnail. Anyone knows in which part of the code of this plugin i can change that color? I can change the color of the image thumbnail in the "cvg-styles.css", but there is nothing to change the one i pretend.
Thank you!
http://wordpress.org/extend/plugins/cool-video-gallery/
This is a CSS change ... My theme has a custom css file, so I just added this on it to overlap the original :
#fancybox-content {
border: 0 solid #000000;
}
The original code was below, from third-party-lib/fancybox/jquery.fancybox-1.3.4.css :
#fancybox-content {
- some code -
border: 0px solid #fff;
etc.