Option to disable header on mobile

It would be nice if we could disable the header just on mobile, while showing on desktop.

Hey there, @Affinity_Grow :waving_hand:

Thanks for sharing your idea! We’ll try to consider your suggestion as an option in the settings, especially if this idea gains more votes.

As for now, you can hide a header on mobile using this code in the Custom CSS field on the Style tab of your widget’s settingsL

@media (max-width: 500px) {
.es-header {
  display: none;
}
}