Sharepoint branding is one the must known concepts in sharepoint developer. You can give the unique look and feel to your sharepoint portal if you know how to customize the theme and modify the master page. You can use the starter master page to customize the master page in sharepoint 2010. Here you can find minimal master page for moss 2007 as well.
Another approach is you can create your own theme for required look and feel. Customizing a sharepoint site is really a challenging job and there may be situations in which you might need to create a new theme. The simplest way is to create the new theme by taking a copy of the existing built in theme. SharePoint theme folder has mainly 3 elements theme.inf, theme.css and images.
- Create a copy of any one of the theme folder in “C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\THEMES” and rename as “mytheme“. For example copy the folder named “SAMPLE” and rename it to mytheme.
- Rename the SAMPLE.INF file to MYTHEME.INF, remember all letters should be in upper case.
- Open MYTHEME.INF file in your favourite text editor and change the value of title as per your needs.
- Replace every word “SAMPLE” with “MYTHEME“
- Change theme.css file to include your custom styles
- Save and close the editor
- Then open C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS\1033\SPTHEMES.XML in a text editor
- Add the following lines under <spthemes> tag
- paste your home.gif in images folder.
- do IIS reset.
<Templates><TemplateID>Mytheme</TemplateID>
<DisplayName>Mytheme</DisplayName>
<Description>My new custom theme.</Description>
<Thumbnail>images/home.gif</Thumbnail>
<Preview>images/home.gif</Preview>
</Templates>
How to test your new theme
Got to site actions–>site setting –> look and feel–> you can see your custom theme there
You can easily deploy above theme by creating the sharepoint solution package(.wsp). You can use well known wspbuilder tool to create the wsp package.
Similar Topics:
- Sharepoint best practices advantages of storing scripts in layout folder
- Learn Sharepoint 14Hive folder structures
- Adding Ribbon button in Sharepoint 2010
- More about SharePoint Custom page and Application Page
- There is a duplicate ‘system.web.extensions/scripting/scriptResourceHandler’ section defined
- Infopath form to HTML using csharp
- SharePoint 2010 MSDN article collection for developer
- Microsoft Sharepoint updating Author-Created By or Editor field programmatically
- SharePoint 2010 migration tips
- Enabling IIS6 HTTP compression on SharePoint dynamic page