Welcome to the in5 Answer Exchange! This a place to get answers about in5 (InDesign to HTML5) and make requests.
0 votes
I would like to customize my lightbox.

I found out, how to change the color of the lightbox, but when I change the backgroundcolor to a more dark one, the shadow is pretty ugly.

So I would like to disable the shadow.

 

Just i another little question, because i dont get it.

in the images assets i found the "lb_controls.png" with arrows in it.
So it looks like there is a possbility to go to another picture within the lightbox.
how to activate it? For example: I have 5 pictures on a page which are marked as thumbnail.
When I open one of them I would like to go to the next picture with the lightbox opened.

 

thank you very much.
in how_to by (330 points)
  

1 Answer

0 votes
 
Best answer

Here's the original box shadow CSS:

box-shadow: 0 0 10px 10px #CCCCCC;

You can change it in any number of ways, e.g.:

/*no shadow*/
box-shadow: initial;

/*black shadow*/
box-shadow: 0 0 10px 10px #000;

Attaching external CSS: Extending Functionality with External Resources
 

by (197k points)
selected by
thank you a lot.
You're welcome. :-)