Doing that is relatively simple but varies depending upon which version you are actually using. If you are using v2.03a as linked to in your above post, you can open up the lightbox.css file in a plain text editor like NotePad and change the value for the background-color property of the overlay:
Code:
#overlay{
position: absolute;
top: 0;
left: 0;
z-index: 90;
width: 100%;
height: 500px;
background-color: #000;
}
Like for red:
Code:
#overlay{
position: absolute;
top: 0;
left: 0;
z-index: 90;
width: 100%;
height: 500px;
background-color: red;
}
Also, though not required, you can change the opacity by finding this line in the lightbox.js file:
Code:
new Effect.Appear('overlay', { duration: overlayDuration, from: 0.0, to: 0.8 });
and changing the highlighted value. Once again, use an plain text editor like NotePad for this. Valid values are 0.1 (really light, hardly noticeable) to 1.0 (completely opaque).
Note: If you are using a different version, some or all of this may be different.
Bookmarks