This master page hack will help you replace the Office 365 text in the top Bar next to the app launcher
Put this code right above the </body> tag in your master page:
<!---Style the SharePoint top bar logo -->
<SharePoint:ScriptBlock runat="server">
if (typeof jQuery == 'undefined')
{
document.write('<script type="text/javascript" src="//code.jquery.com/jquery.min.js"><' + '/script>');
}
var interval = setInterval(function(){
if($('span.o365cs-nav-brandingText').length)
{
$('span.o365cs-nav-brandingText').html("<a href='https://yourtenant.sharepoint.com/'>My Custom Text</a>");
$('span.o365cs-nav-brandingText').attr("style","padding-top: 3px");
clearInterval(interval);
}
}, 1000);
</SharePoint:ScriptBlock>
<!--- End Style the SharePoint top bar logo -->
Source: https://sharepoint.stackexchange.com/questions/108695/replacing-the-office-365-logo-and-link-in-sharepoint-online-suite-bar
- Blogger Comment
Subscribe to:
Post Comments
(
Atom
)
Category
- Active Directory ( 8 )
- App Packaging ( 6 )
- BitLocker ( 9 )
- CrashPlan ( 7 )
- DNS ( 1 )
- DocLink ( 2 )
- Excel ( 3 )
- Exchange ( 7 )
- Group Policy ( 2 )
- Javascript ( 1 )
- M365 ( 5 )
- OneDrive ( 1 )
- OneNote ( 1 )
- Power Apps ( 1 )
- Power Automate ( 1 )
- Power BI ( 11 )
- PowerShell ( 54 )
- SCCM ( 28 )
- SCCM Device Collections ( 12 )
- SCCM Reports ( 12 )
- SCCM User Collection ( 2 )
- SCSM ( 4 )
- SharePoint ( 52 )
- SharePoint Design ( 20 )
- Skype for Business ( 1 )
- SQL Server ( 3 )
- SSL Certificates ( 3 )
- Teams ( 6 )
- Windows 10 ( 3 )
- Windows 7 ( 4 )
- Windows Server ( 5 )
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.