Foundation Clearing Lightbox Caption Position

89 Views Asked by At

By default, the caption of the ZURB Foundation clearing lightbox is located below the image.

Does anybody know how I can position it above the image?

1

There are 1 best solutions below

1
On BEST ANSWER

You can move the caption to the top with a simple CSS fix. The bottom property of the clearing-caption class is set to 0 by default. Changing this property to auto will move the caption to the top.

.clearing-caption {
    bottom: auto
}