Home Forums Claremont Pro Header image Reply To: Header image

#9554
Andy
Keymaster

This CSS will remove the header image on screen/browser widths below 1024px

@media only screen and (max-width: 1024px) {
    .site-header {
        background-image: none;
    }
}