Posts

Showing posts from October 28, 2014

Content Editor Web Part Code

Hide Quick Launch Bar:     2007     <style>     . ms-pagetitleareaframe     {     display: none;     }     . ms-navframe     {     display: none;     }     . ms-titleareaframe     {     display: none;     }     </style>     2010     <style type="text/ css ">      body #s4-leftpanel     {     display: none;     }      .s4-ca     {     margin-left: 0px;     }      </style>           Hide Master Page:     <style>     . ms-globalbreadcrumb     {     display: none;     }     . ms-bannerContainer     {     display: none;   ...