Select to view content in your preferred language

ArcGIS Online Instant App's Category Gallery: how to remove the header

171
1
Jump to solution
03-19-2025 10:47 AM
ScottHansen__MDP_
Frequent Contributor

In ArcGIS Online Instant App's Category Gallery, is there a way a remove the header? I want to incorporate this application into ArcGIS Hub, which already has its own row and header. The only option I am aware of is the Custom Header HTML dialog box, but there is no code available to modify. In the future, it would be nice if ESRI could provide users with an option to toggle a header on or off.

AGOL Instant App's Category Gallery and option to remove header.AGOL Instant App's Category Gallery and option to remove header.

0 Kudos
1 Solution

Accepted Solutions
BethRomero
Esri Contributor

@ScottHansen__MDP_ You can hide the header with custom CSS. This option can be found in Theme & Layout > Gallery theme & layout > Custom CSS.  Add in the following, and header should be hidden

header {
display:none;}

View solution in original post

1 Reply
BethRomero
Esri Contributor

@ScottHansen__MDP_ You can hide the header with custom CSS. This option can be found in Theme & Layout > Gallery theme & layout > Custom CSS.  Add in the following, and header should be hidden

header {
display:none;}