SPS编辑页面布局的一个小问题

在moss的一些页面里面页头部分会有一个特别宽的空白部分,在很多时候是不想要的东西,去除这部分需要把母版页的PlaceHolderAdditionalPageHead部分覆盖

自定义成以下代码就可以了:


<asp:Content ContentPlaceHolderId="PlaceHolderAdditionalPageHead" runat="server">
<style>
TD.ms-titleareaframe, .ms-pagetitleareaframe {
 height: 10px;
}
Div.ms-titleareaframe {
 height: 100%;
}
.ms-pagetitleareaframe table {
 background: none;
 height: 10px;
}
</style>
</asp:Content> 

原文地址:https://www.cnblogs.com/bmy_light/p/1356227.html