English  Italiano  Français  Español  Dansk  Deutsch  Deutsch  Português  Suomi 
Video Lightbox

If there's a way to disable the semi-transparent effect of the thumbnail in lightbox for flash?

Dec 02, 2011

Q: I really like the look of Video Lightbox, but I'm wondering if there's a
way to disable the semi-transparent effect of the thumbnail?
It's a cool effect, but it makes the images look washed out sometimes,
and I hope there's a way to change it. I saw an "overlay shadow" option, but I
guess that's for something else? Would love to know a way to change that
effect, thanks!

A: You should find the following code in engine/css/videolightbox.css file:

#videogallery a{
        display:-moz-inline-stack;
        display:inline-block;
        zoom:1;
        *display:inline;
        position:relative;
        vertical-align:top;
        margin:3px;
        width:160px;
        font-family:Trebuchet,Tahoma,Arial,sans-serif;
        font-size:11px;
        font-weight:normal;
        text-decoration:none;
        text-align:center;
        opacity:0.87;
}



and change value for the 'opacity' parameter to '1':

#videogallery a{
        display:-moz-inline-stack;
        display:inline-block;
        zoom:1;
        *display:inline;
        position:relative;
        vertical-align:top;
        margin:3px;
        width:160px;
        font-family:Trebuchet,Tahoma,Arial,sans-serif;
        font-size:11px;
        font-weight:normal;
        text-decoration:none;
        text-align:center;
        opacity:1;
}

Related