I used this css to remove the header image logo for mobile devices:
@media (max-width:767px){
.x-brand{
display:none;
}
}
The header image logo is gone but it shows a white space where the image header should have been. How do I remove the logo image header for mobile devices and the white space it creates?