Hello,
This is a bit related to my old post on how to change the "SharePoint" text in the top left corner.
I've chosen to try to do this with Powershell like this article suggests:
$app = Get-SPWebApplication -Identity http://intranet $App.SuiteBarBrandingElementHtml = "Intranet" $app.Update()
This actually works however:
- On my Test environment I couldnt get it to update on my Mysites webapp. However Intranet and teamsites webapp updated correctly
- On my Production environment I couldnt get it to update on my Intranet webapp. However Mysites and teamsites updated correclty.
If I through powershell asks for the SuiteBarBrandingElementHtml value it returns the correct answer:
Hower I still have my fanzy "SharePoint" text in the top left corner.
I checked and doublechecked the CSS and Masterpage and I cannot see any difference between Production and the Test environment. I also only run custom CSS/Masterpage on the main Intranet webapplication. Mysites and teamsites have not been altered with in any way.
So, what is causing this? What do I miss?
Thank you for your time.
Jan