So you want to replace the Office 365 and SharePoint links on the top bar of SharePoint Online? Here is how you do it with CSS
Add this CSS into your custom style sheet:
a.o365cs-nav-appTitle{
visibility:hidden;
}
/*Office 365 Text */
a.o365cs-nav-bposLogo{
visibility:hidden;
}
/*Replace the Text by putting your new text before the div
If you put it inside the div, then the links from the old text will apply to your new text*/
div.o365cs-nav-o365Branding:before{
visibility:visible;
content: "My New Text Goes Here";
color:white;
text-decoration: none;
font-family:"Calibri Light";
font-size:40px;
margin: 10px 10px 10px 10px;
vertical-align:bottom;
}
If you want to put in an image instead of text, use this in the content part
content: url('myimage.png');
And make sure the image is about 45px in height.
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.