change background color and padding for the container on mobile for the banner with picture on Dawn

hello, i am struggling to change background color and padding for the container on mobile for the banner with picture on Dawn theme. When you add a banner with a picture, the button to see the product is in the middle of the banner on phone and you cannot see it, so you can use “Show container on mobile” and the button is under but you cannot change the background color and i would like to put in black and reduce the top and under padding too only for mobile because on the computer it is big enough to see the banner, do you know how to proceed ? thx you :slightly_smiling_face:

Add This css in your Base.css File

@media screen and (max-width:767px){
    .banner__box.content-container.content-container--full-width-mobile.color-scheme-3.gradient {
        background: #000;
        padding: 40px 0;
    }
}
1 Like

thx !!

1 Like