質問

SharePoint2013アプリケーション(SharePointホスト)を展開しています。 SharePoint2013ロゴとアプリ名を削除する方法 document.ready でこれを試してみました

$("#titleAreaRow").hide();
$("#DeltaWebPartAdderUpdatePanelContainer").hide();
.

しかし、私はまだロゴを見ることができます。これを修正することができますか?

ありがとう、 NK

役に立ちましたか?

解決

You can do it with CSS in your default.aspx file with:

#s4-titlerow{
    display:none!important;
}

This will hide the complete title area (with breadcrumb and title).

Doing it with javascript is tricky since SharePoint seems to set display:block on the element with javascript as well. So if you want to go in that direction you need to find out what JS script is setting it to display, and try to run your script afterwards.

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top