Frage

Ich stationiere eine SharePoint2013-App (SharePoint gehostet). Wie kann ich das SharePoint2013-Logo und den App-Namen entfernen? Ich habe das in generakodicetagcode probiert generasacodicetagpre.

Aber ich kann das Logo immer noch eine Weile sehen. Wie kann ich es reparieren?

danke, Nk

War es hilfreich?

Lösung

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top