Pregunta

Estoy desplegando una aplicación SharePoint2013 (SharePoint Hosted). ¿Cómo puedo eliminar el logotipo de SharePoint2013 y el nombre de la aplicación? Probé esto en document.ready

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

Pero todavía puedo ver el logotipo por un tiempo. ¿Cómo puedo arreglarlo?

gracias, Nk

¿Fue útil?

Solución

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.

Licenciado bajo: CC-BY-SA con atribución
scroll top