Hello
Is there some way to suppress bottom banners from picture thumbnails ( but keep it on folders) in
bootstrap darkroom theme?
Thanks.
(Piwigo 15.6.0
Operating system: Linux
PHP: 8.0.30 (Show info) [2025-10-08 16:21:29]
MySQL: 10.5.8-MariaDB-log [2025-10-08 09:21:29]
Graphics Library: External ImageMagick 7.1.1-38
Cache size 322.63 MB
Activated plugin list 6
LocalFiles Editor
PersonalPlugin
rightClick
super_zoom
Take A Tour of Your Piwigo
VideoJS)
Offline
I got it :))) ... just drop the bottom code inside CSS of LocalFiles editor:
/* Kill the empty caption bar under thumbnails (Bootstrap Darkroom) */
#thumbnails .card.card-thumbnail .card-body.list-view-only,
#thumbnails .card.card-thumbnail .card-footer,
#thumbnails .card.card-thumbnail .caption {
display: none !important;
height: 0 !important;
padding: 0 !important;
margin: 0 !important;
border: 0 !important;
}
/* Also remove any leftover space the card might add */
#thumbnails .card.card-thumbnail { padding-bottom: 0 !important; }
/* Optional: on picture page, hide the bottom info bar if your theme shows one */
#theImage .card-footer,
#theImage .imageInfo,
.content .imageInfo,
.content .image-info {
display: none !important;
height: 0 !important;
padding: 0 !important;
margin: 0 !important;
border: 0 !important;
}
Offline