SharePoint 2013 – hide the suite links box using CSS
I have been asked if it is possible to hide the Yammer, OneDrive and Sites links at the top of a particular site (without disabling them completely): An easy way to achieve this is by placing a Script Editor web…
SharePoint 2013 – hide the page name
Sometimes I find that the page name at the top of a page in SharePoint gets in the way, especially on wiki pages: This can be hidden using some custom CSS in a Script Editor web part: <style>#DeltaPlaceHolderPageTitleInTitleArea{ display: none;…
SharePoint 2013 – Using CSS to hide the left navigation on a page
The following CSS is useful if you want to hide the navigation on the left hand side of a page: <style type=”text/css”> /* — Hide the quick launch — */ #sideNavBox { display: none; } #contentBox { margin-left: 20px…
Referencing a custom css file in a master page
For small customisations I will sometimes insert styles using a Script Editor web part, but the best way to apply custom style sheets is via the master page. Here’s how I do it: 1. Upload the custom .css file…
SharePoint 2013 – hide the quick launch
Today I was asked to hide the quick launch on a SharePoint 2013 page. The easiest way to achieve this was to use the Script Editor web part with the following CSS: <Style Type="Text/CSS"> /* — Hide the quick launch…
Remove the title from a news feed web part
If you would like to hide the title of a news feed web part you can do this by adding a Script Editor web part to the page and editing the code snippet to include the following: <style type=”text/css”> .ms-microfeed-siteFeedTitleArea…