Air theme Category info on mobile

Hi

I’m having some issues correcting the category info header. As you can see in my image the text doesn’t contrast well with the green and to be honest I feel that this section is not required on mobile. Interestingly this displays over a quote background on desktop.

I still to have exhausted any idea I had to modify this in settings. Can anyone help?

Hello!

Afaik there is no setting to hide the category banner on mobile.

Luckily, if you just want to hide it completely on mobile, it can be done with a simple CSS addition:

@media (max-width: 767px) {
  .category-heading.--has-logo {
    display: none;
  }
}

That worked a treat. Thank you for the help.