Forum Discussion
lohand
Jan 23, 2023Copper Contributor
Disable Shy Header in Sharepoint Online Hub Site
Using a search engine on the world-spanning computer network "The Internet", it seems this questions has popped up now and then without ever getting an answer from Microsoft. Is it so? It really is k...
jbendfeldt
Mar 06, 2023Copper Contributor
I was able to accomplish that by referencing an external CSS file using an SPFx extension and adding some CSS.
In the CSS file add:
[class*="root-"]{
display: flex !important;
}
At least that is the solution if you're using hub navigation, I've seen others out there for regular modern navigation.
In the CSS file add:
[class*="root-"]{
display: flex !important;
}
At least that is the solution if you're using hub navigation, I've seen others out there for regular modern navigation.
- ribeirovMar 06, 2023MCTReally helpful thanks for sharing!