문제

SharePoint2013 App (SharePoint Hosted)을 배포하고 있습니다. 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