I’m trying to remove the header image completely from my pages. I have reduced header size to 0 px and disabled ‘Feautre images as header images’, however, the header image is still shown when my screen shrinks to mobile size.
The theme is not designed to be used with nothing in the header area (title/logo, header image). Do hide everything above the menu on mobile devices, use this CSS:
@media (max-width: 800px) {
body #branding, body #bg_image {
display: none;
}
}