Tuesday, December 6, 2011

Let’s start customization

Here we go with some customization with a small piece of CODE to make SharePoint more stunning and more users friendly. I appeal to all of you, please share some customization tips to make SharePoint more BEAUTIFUL. 

Here are some codes we can add into Content Editor Web Part to get desired results. 

Hide QuickLaunch bar (Area remains – blank)
<style>
.ms-quicklaunch
{
display:none;
}
</style>

Hide QuickLaunch bar with Area
<style type=”text/css”>
.leftNavArea{display:none;}
</style>

Hide Allwebparts from page
<style>
.ms-navframe
{
display:none;
}
</style>

Hide QuickLaunch bar with Area and all Web Parts from the page
<style>
.ms-pagetitleareaframe
{
display: none;
}
.ms-navframe
{
display: none;
}
.ms-titleareaframe
{
display: none;
}
</style>

No comments:

Post a Comment