If you want to hide the Quick launch bar and the Bread Crumb in a MOSS site :
On the page where you want to hide :
Edit page-----Add a web part-----Content editor web part-----In Source editor------
<style rel = "stylesheet" type="text/css"/>
.ms-pagebreadcrumb
{
display:none;
}
</style>
The above code is to hide the breadcrumb.
<style>
.ms-quicklaunch
{
display:none;
}
.ms-navframe
{
display:none;
}
</style>
The above code is to hide the quich launch bar.
Comments are welcome.
On the page where you want to hide :
Edit page-----Add a web part-----Content editor web part-----In Source editor------
<style rel = "stylesheet" type="text/css"/>
.ms-pagebreadcrumb
{
display:none;
}
</style>
The above code is to hide the breadcrumb.
<style>
.ms-quicklaunch
{
display:none;
}
.ms-navframe
{
display:none;
}
</style>
The above code is to hide the quich launch bar.
Comments are welcome.
Hmm srikanth...great man...
ReplyDelete