Option to Hide Module Header

Whenever I preview a module, I can see it automatically adds a header (equipped with logo) at the top of the module. However, I was hoping there would be a way to turn this off.

I've forced this using CSS for now, but that doesn't seem to be a durable solution.

Hi emozio :wave:

Is this an example of the header that you're referring to?

Yes, in part. I wasn't referring to the black area, but rather the logo "Retool Admin", which seems to be present at all times, but in some cases I just want to load the module, without any heading (just a clean, neat page).

Would you mind sharing a screenshot of the page and highlight the area you'd like to hide?

I have sent you a DM regarding this request. I prefer not to mention any logos or affiliations in public,

1 Like

Hey @emozio :wave:

Thanks for sharing more details. Just updating this thread with the conversation we had in DM's. Right now you're using this work-around with Custom CSS:

[class*="_headerContent_"] {
  display: none!important;
}

.presentation-canvas-padding .retool-canvas-container--with-navigation {
  margin-top: 0!important;
}