Home
Getting Started
Solutions
Tutorials
Tips
SE Optimization
Customizing OL
Help and How To
Downloads
Services
Frequently Asked Question
Contact Us
 
 

Remove Certain Aspects of Office Live Website

This solution has been update for the new version!
 
Remove the Header, Top/Side Navigation, and the Footer

You no longer need codes to remove the header, top navigation, side navigation, or the footer.  Instead in the Page Editor, click Page Properties, and uncheck the items do do not wish to have displayed.  This is on a page by page basis, in other words it will not affect other pages.

 

 
Remove OL Logo

This solution will remove the Logo from every page on your Site.  This solution requires that you have Advanced Design Features Activated, if need help on how to do this check the Help and How To section.

Go to the Site Designer, in the Site Design, click Style Sheet, check the Apply Custom CSS to Site and paste the following code.into the box, click OK.  The Office Live Logo should now be gone!

 

.MS_MasterBottomAD
{
display : none;
}

 

If you only want the Logo to be gone from one page, use the JavaScript code below to hide it.  Paste this code into a HTML module anywhere on the Page.

  

<script language="javascript">
parent.document.getElementById('ctl00_IWS_WH_Elem_BottomAd').style.display = 'none';

</script>