How to set footer’s background color inside media query
-
I Need Help…
My Body’s Background Color is#efefef
I wanted to add another image on footer’s background for small screensI 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 triedbackground-color: transparent;
andbackground-color: #efefef;
but both didn’t work.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to set footer’s background color inside media query’ is closed to new replies.