Home › Forums › Claremont Pro › Header image › Reply To: Header image
March 10, 2020 at 9:36 am
#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;
}
}