It is rediculous that one has to search on scraps of code to embed into the header and hope that webflow respects those css settings. This should be a simple menu selector in the control panel of webflow!
Rather than putting together crap like this. We pay a lot for what you offer us, this isn't an unreasonable request to be able to customize whether thumbnails appear, the color of the background, color of captions etc.
<style>
.w-lightbox-backdrop { background: tan; }
.w-lightbox-caption {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: .5em 1em;
/* background color */
background: white;
text-align: left;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
/* text color */
color: gray;
}
.w-lightbox-strip {display: none;}
.w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
height: 100vh;
}
</style>