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

相关文章:

  • 2022-12-23
  • 2021-12-01
  • 2021-11-11
  • 2022-12-23
  • 2021-09-08
  • 2021-10-30
  • 2021-08-01
猜你喜欢
  • 2021-08-26
  • 2021-05-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-17
  • 2022-02-06
相关资源
相似解决方案