css backgrounds are not responsive and never won't be because it's technically impossible to make such background responsive. It has completely nothing to theme but it's more technical issue between being responsive and css backgrounds.
Ok, thanks. As we can see, it's subheader's background. So to replace this background on mobile with different background, you need to use the following css:
@media only screen and (max-width: 959px) { #Subheader { background-image: url('PATH-TO-THE-IMAGE') !important; } }
But if you prefer to use solid background instead, then use:
@media only screen and (max-width: 959px) { #Subheader { background-image: none !important; background-color: #000 !important; } }
Comments
css backgrounds are not responsive and never won't be because it's technically impossible to make such background responsive. It has completely nothing to theme but it's more technical issue between being responsive and css backgrounds.
Thanks!
This is the page it is most noticeable on.
If I was able to either use different images for tablet and mobile or just replace with a solid colour. That would be better.
Love your theme by the way. Best theme I've used by far.
Cheers