Forum Discussion
Chris Gilson
Nov 29, 2016Brass Contributor
Way to convert existing site to modern team site UI?
The new modern team site home page looks great and new team sites get to use it. How about existing sites? Is there a way for a site owner to convert their site (especially the home page) to the mo...
Jeremy Coleman
Mar 10, 2017Copper Contributor
If you are up to adding a modern web part you can use the custom script / content editor web part to add custom html to the page allowing you to hide the banner:
https://github.com/jcoleman-pcprofessional/True-Script-Editor
https://github.com/jcoleman-pcprofessional/True-Script-Editor/releases/download/v1.0.2/true-script-editor.sppkg
After installing to the app catalog, add the app to the site then edit the app properties.
Add to the CSS Editor property:
.pageHeader {
display:none;
}
Aaron Shropshire
Sep 27, 2017Copper Contributor
To remove the banner from a new modern page, all I had to do was change the PageLayoutType from "Article" to "Home"
<mso:PageLayoutType msdt:dt="string">Article</mso:PageLayoutType>
to
<mso:PageLayoutType msdt:dt="string">Home</mso:PageLayoutType>
- Collaboration Helpdesk HelpdeskFeb 21, 2018Copper Contributor
It worked.. Thanks...
- Marco WierschemOct 13, 2017Brass ContributorThis can only be done with Admin rights?
- Aaron ShropshireOct 13, 2017Copper Contributor
Sharepoint admin isn't needed, just need proper access within the specific site and Sharepoint designer.