Welcome to deBUG.to Community where you can ask questions and receive answers from Microsoft MVPs and other experts in our community.
1 like 0 dislike
2.7k views
in SharePoint Server by 12 13 20

I am using SharePoint 2016, I need to change SharePoint title ribbon text from SharePoint word text to another word, Is it possible?

Change title in SharePoint 2016 ribbon


2 Answers

2 like 0 dislike
by 152 169 345
selected by
 
Best answer

Change SharePoint 2016 Ribbon Title

Yes, it's possible to change the Title text at the top SharePoint 2016 Ribbon, but there is no OOTB option to change the SharePoint ribbon text, and you should use the PowerShell.

Change SharePoint 2016 suitbar title

Change SharePoint Text in SharePoint 2016 Ribbon Using PowerShell

To change the title in SharePoint ribbon, you should do the following:

Change SharePoint word in ribbon in SharePoint 2016

Steps

  • Specify which web application you would like to change its SuiteNav Bar text
  • Open Windows PowerShell as Administrator.
  • Run the below script with your web application and the text that you would like to show

      Add-PSSnapin Microsoft.SharePOint.PowerShell
      #Set your Web Application URL
      $webApp = Get-SPWebApplication "https://debug.to/"
      
      # Change SuitBar Text
      $webApp.SuiteNavBrandingText = "deBUG.to" 
     
      #Update changes
      $webApp.Update()
    

OutPut
Change title in sharepoint 2016 ribbon

Add Linkable logo in SharePoint 2016 Ribbon (Suite Bar) Using PowerShell

You can also add a linkable logo with a link, you should do the following:

Steps

  • Upload your logo to the Site Assets library or any other library as you prefer.
  • Open Windows PowerShell as Administrator.
  • Run the below script to add a Linkable logo in SharePoint Ribbon.

      Add-PSSnapin Microsoft.SharePOint.PowerShell
      #Get the Web Application
      $webApp = Get-SPWebApplication "https://debug.to/"
      
      # Add Logo, add Linkable Logo
      $webApp.SuiteNavBrandingLogoTitle = "deBUG.to"  
      $webApp.SuiteNavBrandingLogoUrl = "/siteassets/images/siteIcon.png"
      $webApp.SuiteNavBrandingLogoNavigationUrl = "https://deBUG.to" 
     
      #Update changes
      $webApp.Update()
    

Output

Add Linkable logo in SharePoint 2016 Ribbon

By default, the logo is shown in the center and you can't control its position using PowerShell. however, you can instead use CSS to show the logo to left.

<style>
.o365cs-nav-header16 .o365cs-nav-centerAlign
{
   text-align:left;
}
</style>

Adjust logo in sharepoint ribbon to the left

Note: to reset and remove the logo in SharePoint 2016 ribbon, you just need to run the above script with blank values


You might also like to read

by 12 13 20
0 0
Thanks Mohamed, I will check this code and feedback you if it is worked!
by 12 13 20
0 0
Awesome answer, it's worked like charm,
by 152 169 345
0 0
Glad to hear it helped you ♥
0 like 1 dislike
by 1 2

Looks like this can be achieved through Powershell . Please refer the below technical document.
https://sharepoint.stackexchange.com/questions/140613/change-title-in-sharepoint-ribbon

by 12 13 20
edited by
0 0
I have checked this URL but it doesn't work for SharePoint 2016 :(
If you don’t ask, the answer is always NO!
...