Hi,
at wunderwanne.at I want to change the background-image of the header for mobile devices. I put @media screen … to the quick css, but
the image isn’t changed. I see the right background-image-code in the browser, but it doesn’t influence. It seems that it is overriden by javascript.
(I know that the background-image isn’t perfect. But I got it from my customer, and I want to override the global setting für the header background-image via css for mobile devices.)
Thanks,
Daniela
@media only screen and (max-width: 989px) {
.header_color {
background-image: url(‘http://www.wunderwanne.at/wpww/wp-content/uploads/2017/02/Header-Logo-990.jpg’) !important;
background-position: top left;
background-repeat: no-repeat; }
}
@media only screen and (max-width: 768px) {
.header_color {
background-image: url(‘http://www.wunderwanne.at/wpww/wp-content/uploads/2017/02/Header-Logo-768.jpg’) !important;
background-size: cover;
}
}
Best regard,
Daniela