trvswgnr / bs5-lightbox

A pure JS lightbox gallery plugin for Bootstrap 5 based on the Modal and Carousel components
https://trvswgnr.github.io/bs5-lightbox/
MIT License
129 stars 28 forks source link

Change background color #20

Closed ingGhost closed 2 years ago

ingGhost commented 2 years ago

How to change background color to transaparent mate? i write this, but not work :(

.lightbox-carousel > .carousel-inner > .carousel-item > .ratio{
    background-color:#fff0;
  }
trvswgnr commented 2 years ago

@ingGhost the background is currently set in the style attribute, so to override, you will need to add !important like so:

.lightbox-carousel > .carousel-inner > .carousel-item > .ratio{
    background-color:#fff0 !important;
}