문제

Is there any way I could only show NewForm.aspx in a div without showing Ribbon or Side Navigation at all ?

Its SharePoint 2013 but I also want to know if its possible with Office 365 too?

도움이 되었습니까?

해결책

You can edit the page in SharePoint Designer and then add CSS to hide the elements you want

For Example, in SharePoint Online you can use below CSS to hide the Quick Launch (Left Navigation)

#sideNavBox {
    display:none;
}

For targeting ID inside Div, you can use #DivID #sideNavBox

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top