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

Solved

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

coronan
Tourist
7 0 1

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:

 

Screenshot 2024-01-13 at 8.20.57 PM.png

 

I'm using the theme Colorblock. Anyone have a solution for this? 😰

Accepted Solution (1)

EwaFromEcomNoon
Shopify Partner
18 1 1

This is an accepted solution.

Hello Coronan 👋
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;
}
Need professional help? Contact me on ecomnoon.com

View solution in original post

Replies 2 (2)

EwaFromEcomNoon
Shopify Partner
18 1 1

This is an accepted solution.

Hello Coronan 👋
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;
}
Need professional help? Contact me on ecomnoon.com
coronan
Tourist
7 0 1

Thank you!!! That worked perfectly.