Hi, I have a page with interactive banners, which I’m trying to style so they look good at all browser sizes, but the CSS below isn’t working when put in custom CSS, why is this? Or, alternatively, how can I have the layout I have resize to 2 columns (instead of 3) at browser widths 992px and smaller (except when it goes down to 1 column anyway)?
@media (min-width: 1184px) {
.banner-block .mask p {
font-size: 13px;}
}
@media (max-width: 977px) and (min-width: 1184px) {
.banner-block .mask p {
font-size: 12px;}
.banner-block img {width: 110%!important;}
}
@media (max-width: 753px) and (min-width: 976px) {
.banner-block .mask p {
font-size: 12px;}
.banner-block .bb-back-icon {display: none;}
.banner-block h3.bb-top-title i {display: none;}
.banner-block img {width: 150%!important;}
}