SharePoint 2013 suite bar
Method 1
$('div#suiteBarLeft .ms-core-brandingText').html("<span>Your preferable name</span> ");
Method 2
.ms-core-brandingText:after{
content:"Your preferable name";
}
.ms-core-brandingText{
margin-left: -90px;
}
$('div#suiteBarLeft .ms-core-brandingText').html("<span>Your preferable name</span> ");
Method 2
.ms-core-brandingText:after{
content:"Your preferable name";
}
.ms-core-brandingText{
margin-left: -90px;
}
Comments
Post a Comment