Is there a way to remove the file name and the background of the file name in jquery gallery thumbnails

Q: I am using visual lightbox and "CRYSTAL" for the large image, is there a way to remove the file name and the background of the file name that sits on top of the large image.

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

#imageData{
        font: 12px Tahoma,Arial,Helvetica;
        color: #000000;
        background-color: #ffffff;
        overflow:visible;
        padding: 12px;
        left: 10px;
        background-color:#ffffff;
        text-align:center; 
        position: absolute;
        _bottom:0;
        _left: 0;
}



and add 'display:none;' parameter:

#imageData{
        font: 12px Tahoma,Arial,Helvetica;
        color: #000000;
        background-color: #ffffff;
        overflow:visible;
        padding: 12px;
        left: 10px;
        background-color:#ffffff;
        text-align:center; 
        position: absolute;
        _bottom:0;
        _left: 0;
        display:none;
}

Related