Link to home
Start Free TrialLog in
Avatar of colonelblue
colonelblue

asked on

How to remove top bar that has Browse , Page , Share , Follow ,Sync and Edit on a particular page on SharePoint 2013?

I's there a way to remove the whole are and space that includes all the above which are all on one line?
I would like to move up my content closer to the top ?

Thanks again!
ASKER CERTIFIED SOLUTION
Avatar of Ingeborg Hawighorst (Microsoft MVP / EE MVE)
Ingeborg Hawighorst (Microsoft MVP / EE MVE)
Flag of New Zealand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
All you need to do is to follow these steps :)

Open the master page, find the div tag:
Put the following around it:
<Sharepoint:SPSecurityTrimmedControl runat="server" Permissions="ManageWeb">
<div id="s4-ribbonrow" …</div>
</SharePoint:SPSecurityTrimmedControl>
or you can follow this Blog, it shows you three ways of doing it but I guess you dont want to use javascript as once I used it and it broke few things.
http://blogs.msdn.com/b/sharepointdev/archive/2012/04/30/how-to-hide-the-ribbon-in-sharepoint-2010-rajeswari-mohandas.aspx
Avatar of colonelblue
colonelblue

ASKER

Thank you very much Teylyn.
And indeed  I'd much rather learn to fish. So thank you.
Alas I will need to ask another question because I don't CSS will do it for this single page.
Using Firefox I have isolated that the left navbar is  in a div Iid called contentRow and a div in it called sideNavBox.
I am trying to place a logo over that sideNav - quick launch after removing the title of and ribbon.
Outstanding .
Thank you.