feature-request: don't hide title
Opened this issue · 1 comments
Cysign commented
Just found this gallery while searching for a simple gallery.
But I'd like to always-show the title of the pictures in the lightbox instead of hiding it after a few seconds.
Maybe this schould be a option like:
titleHideAfterSeconds : 0 // 0=always show, number 1-90 = seconds before title hides
centurianii commented
Sure...
/* Make top-bar & bottom-bar always visible */
#swipebox-top-bar.visible-bars,
#swipebox-bottom-bar.visible-bars {
transform: translate3d(0,0px,0)! important;
}
#swipebox-top-bar {
top: 0!important;
}
/* Make bottom-bar vertically centered */
#swipebox-bottom-bar {
top: calc(50% - 50px) !important;
}
/* Make top-bar & bottom-bar transparent */
#swipebox-bottom-bar, #swipebox-top-bar{
background: transparent !important;
opacity: 1 !important;
}