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:

Popular Posts

Disclaimer

The opinions expressed on this blog are the personal views of Pratik's SharePoint Blog, and do not represent or reflect the viewpoints or policies of any past, present, or future employer, colleague, or customer, or any other entity. The posts on this blog are provided ‘as is’ with no warranties, express or implied, and confer no rights. Use of information contained within this blog, including specific technical steps mentioned herein, is at your own risk. References to specific software products, processes, resources, or companies do not imply any endorsement.