Question

I am deploying a SharePoint2013 App (SharePoint hosted). How can I remove the SharePoint2013 Logo and the App name? I tried this in document.ready

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

But I can still see the logo for a while.How can I fix it?

Thank, Nk

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top