0 SharePoint / CSS / タイトルバー色づけ みんなに公開
どちらもbackground-color
はSharePoint標準の青色にあわせています。
タイトルバーのみを色づけする場合
<style type="text/css">
/* タイトルバーの文字装飾 */
.ms-webpart-titleText,.ms-webpart-titleText > a{
background:#0072C3; /*背景を指定*/
font-size:110% !important; /*文字サイズを指定*/
color:#FFFFFF !important; /*文字色を指定*/
}
</style>
タイトルバーとH2を色付けする場合
<style type="text/css">
/* タイトルバー */
h2 { background:#0072C3;
font-size:100% !important;
font-weight:bold;
padding:3px 3px 3px 15px;
margin-top:0 !important;}
/* タイトル文字 */
h2 span {color:#FFFFFF !important; }
</style>
コメント(0)