Lightbox 2 Amends

Soldato
Joined
27 Dec 2005
Posts
17,315
Location
Bristol
I'm trying for the life of me to find somewhere to remove my link CSS styles from the next/prev/loading/close buttons on Lightbox 2. My generic link style applies a bottom border and it looks rubbish. I've put border:none; in the Lightbox CSS file for all the relevant IDs to no avail.

Anyone have any ideas?

Also, although not as important, is it possible to change the background colour (ie the part that greys out the rest of the site)? I'd like to change it to white so it fades the remaining site instead of darkening it.

Thanks :)
 
Last edited:
You have a bottom border set for all a elements. Just override it.

Code:
#lightbox a { border-bottom: 0;}

For the background color, just change the background color on #overlay
 
Last edited:
Back
Top Bottom