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

I have validation problem with jquery video. How can I fix it?

Jul 18, 2012

Q: I use Video Light Box for months and months and I’m very happy with it.

I found a CSS error in the "videolightbox.css" file. This error already existed in the former version. Let me show you :

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


The * (star) before "display" is TOTALLY css invalid and cannot be interpreted by any webnavigator.
What does that star mean???

A: Our main task is to make VideoLightBox compatible with so many browsers as possible. That's why we have to use properties, filters, etc., that are not standard.

This line:

*display:inline;


is added for compatibility with IE7 browser.

Related