I Need Another Help…
My Body Background Color is Grey
I wanted to add another image for footer background for small screens
I used this code.
@media only screen and (max-width: 767px) {
.footer-widgets {
background-image: url(https://example.com/small-footer-background.png) !important;
background-repeat: no-repeat !important;
background-size: cover !important;
background-attachment: local !important;
}
}
But still, there was white in the background
I tried background-color: transparent;
but it didn’t work.
-
This reply was modified 4 years, 6 months ago by vikral.