Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I was wondering how I change the MySite theme from the default blue/white look to the Oslo look, or one of the other default themes?

share|improve this question

1 Answer

You should either have a feature stapler for your my sites, like explained here:

If you want to change the theme for existing MySites you could do it by code like so:

ThmxTheme oTheme = ThmxTheme.Open(siteCollection,"_catalogs/theme/<nameoftheme>.thmx");
oTheme.ApplyTo(oWeb, false);
oWeb.Update();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.