I moved your post to a new thread because it really appears to be a new question, not much if anything to do with the thread you posted in other than possibly one of the scripts involved.
The quote you have points to a slide show script. But the advice you seek appears to be as regards a lightbox type script. Which exact lightbox script are we talking about here?
What I think you want to do can probably be accomplished in the .css file for the script. Many of these lightbox type scripts share much in common. In the .css file for the script (often called lightbox.css) there is often an entry for:
with several property/value pairs associated with it. For Lightbox v2.03a the entry for #overlay is like so:
Code:
#overlay{
position: absolute;
top: 0;
left: 0;
z-index: 90;
width: 100%;
height: 500px;
background-color: #000;
}
See the highlighted line? Make that transparent:
Code:
#overlay{
position: absolute;
top: 0;
left: 0;
z-index: 90;
width: 100%;
height: 500px;
background-color: transparent;
}
If you want more help, please specify the exact name and version of the lightbox type script you are using.
If I've misunderstood your question, please accept my apologies, and please be more specific.
Bookmarks