Add box behind text on slider for mobile (Colorblock theme)

Hi everyone! I want to add a box behind the slider text. There’s a box for desktop but not for mobile view, which makes it very hard to read the text:

I’m using the theme Colorblock. Anyone have a solution for this? :anxious_face_with_sweat:

Hello Coronan :waving_hand:
It’s a bug in the theme you’re using. This code in section-image-banner.css causes the problem:

@media screen and (max-width: 749px)
.banner:not(.banner--mobile-bottom):not(.email-signup-banner) .banner__box {
    background: transparent;
}

to fix it, change it to:

@media screen and (max-width: 749px)
.banner:not(.banner--mobile-bottom):not(.email-signup-banner):not(.slideshow) .banner__box {
    background: transparent;
}

Thank you!!! That worked perfectly.

1 Like