Okay
  Public Ticket #2960512
Lightbox Portfolio Settings
Closed

Comments

  •  2
    justin_carter started the conversation

    Hello,

    is there a way to change the color of the background when clicking on an image when using the lightbox feature rather than just using the light / dark / default options?

    I'm trying to match to a specific color or just have a white background if possible and not have the transparent background, but not sure where to make that change.


    Thanks!
    Justin

  • [deleted] replied

    Hi Justin,

    To remove transparency please add the code below to your Custom CSS area:

    .lg-light .lg-backdrop.in {
        opacity: 1 !important;
    }
    

    If you want to change the background color too you can add this CSS code:

    .lg-light .lg-backdrop, .lg-outer.lg-kalium .lg .lg-pager-outer .lg-pager-cont.lg-pager-active .lg-pager {
           background: #F6F6F6 !important;
    }

    Have a nice day!