question

johnjohn-0472 avatar image
0 Votes"
johnjohn-0472 asked JoyZ answered

Can we remove the SharePoint word from the upper banner for all our sharepoint sites

We have a SharePoint online tenant, and we need to remove the word SharePoint from all the upper banners for all the sites, so first question is this possible per site, then is this possible for all the sites at once?

Here is the SharePoint word I am talking about:

134059-sharepointlogig.png


office-sharepoint-onlinesharepoint-dev
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

JoyZ avatar image
0 Votes"
JoyZ answered

@johnjohn-0472,

Normally,we don't recommended to customize the suite nav with either CSS or JS.

If you still want, for modern experience sites, we can use the SPFx application extension to inject custom CSS on modern SharePoint pages to hide "SharePoint".

Refer to steps:

  1. Create a CSS file named custom.css with your customizations and upload it to “Style library” of the root style library(which can be found at https://[yourtenant].sharepoint.com/Style%20Library/Forms/AllItems.aspx.)

    ._6EkCIBulssv0eDQ55G3yH {
    visibility:hidden;
    }


  2. Download or build the SPFx solution package from https://github.com/hugoabernier/react-application-injectcss.

  3. Upload and deploy the .sppkg file to tenant App catalog: List item

  4. Activate the app to one of your modern site via adding the app.

  5. After that, your custom CSS should work up.
    List item


If an Answer is helpful, please click "Accept Answer" and upvote it.

Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



image.png (32.7 KiB)
image.png (1.8 KiB)
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.