Viewing 1 replies (of 1 total)
  • Plugin Contributor Tim Carr

    (@n7studios)

    Hi Houston,

    You’d need to override the .jp-carousel-overlay class in your CSS. For example, to set a black background with 80% opacity:

    .jp-carousel-overlay {
    background:#000;
    background:rgba(0,0,0,0.8);
    }

    And for a white background:

    .jp-carousel-overlay {
    background:#fff;
    background:rgba(255,255,255,0.8);
    }

    For browsers not supporting rbga transparency, they’ll just see a solid background color.

Viewing 1 replies (of 1 total)
  • The topic ‘background transparency’ is closed to new replies.