mreq / slick-lightbox

A lightbox wrapper for Ken's amazing slick carousel.
http://mreq.github.io/slick-lightbox/
MIT License
229 stars 103 forks source link

Change caption position to the top #73

Closed Cannonb4ll closed 6 years ago

Cannonb4ll commented 6 years ago

First of all; Great work, I love your package!

I am trying to get my caption text to display 'above' my image, is this possible? I searched the docs but I only saw 'dynamic' and 'bottom'. Could you tell me how to place it above the image?

mreq commented 6 years ago

You'd have to use custom CSS for that. Caption at the top is not supported by default.

Something like this (untested) should do

.slick-lightbox-slick-item-inner {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
}
Cannonb4ll commented 6 years ago

Worked like a charm, thanks! 👍