Question

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?

Was it helpful?

Solution

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

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