Using different header images for different devices

I’ll debug the source code after for detail anwser but I guest you can try this CSS solution:

@media screen and (max-width: 375px) {
  css selector {
    background-image: url(“header-mobile.jpg”);
  }
}