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> |