How do I make a header color overlay transparent?

I am creating my first store with the BOOM theme and am having difficulty with the mobile header images.

I’m sure this is an easy fix but I cannot find a solution in the editor. My header is overlaid with a semi transparent color value and I cannot find any way to adjust transparency or set the value to transparent in editor.

Any help would be appreciated.

@Sdodge14 – since you didn’t provide a link, I can only go by what the theme demo has to offer … This should be the selector you need – however .slider-2b9978d5-8157-4e84-82c6-7f924a86adec-list is NOT going to be the class that you need – you’ll have to replace this with the class that that slide has applied in your theme:

@media screen and (min-width: 320px) and (max-width: 767px)
.home-slideshow-section .dt-sc-swiper-slider .swiper-wrapper .slider-2b9978d5-8157-4e84-82c6-7f924a86adec-list .slider-content.slider-content [class*="slide_"] {
  background: rgba(255, 242, 240, 0.85);
}

All the best,
Mario