dkbdesign
Member
Posted 6 months ago #
Hello everyone,
I need to find a way to make the background white instead of dark gray for the NextGEN gallery plugin after clicking the thumbnail. You know; the lightbox pops up with he image and the background fades to gray. There must be a way to change it.
Any help/hack would be greatly appreciated!
Thanks in advance.
In
Plugins > Editor > NextGEN > nextgen-gallery/shutter/shutter-reloaded.css
Change this code:
div#shShutter {
height: 100%;
z-index: 1000;
background-color: #000000;
opacity: 0.8;
filter:alpha(opacity=80);
}
For this code:
div#shShutter {
height: 100%;
z-index: 1000;
background-color: #FFFFFF;
opacity: 0.8;
filter:alpha(opacity=80);
}
(just change the background colour)
Hope this helps!
dkbdesign
Member
Posted 6 months ago #
Hi Sage,
This worked perfectly! Thank you so much!
No problem, really glad I could help.
AlbinoMonkey
Member
Posted 3 months ago #
How do I change the colour of the caption text as this is now invisible as both are white?
Thanks
AlbinoMonkey
Member
Posted 3 months ago #
I found the answer I had to add the following code to the Plugins > Editor > NextGEN > nextgen-gallery/shutter/shutter-reloaded.css
div#shName {
color: #000;
}
Hope this helps someone else!