Is there a way to hide the header image on for mobile devices only?
I thought I had the right CSS code in place, as when I check the site on a virtual small screen, the image is hidden.
@media (max-width: 768px) {
.header-image {
display:none;
}
}
However, the problem arises when I view the website on an actual mobile device - the image still shows up! Any ideas why this might be happening?