Posts

Showing posts with the label global navigation

SharePoint - What Should Be Allowed to go in Global Navigation?

I'll make this real easy.   IF EVERY SINGLE USER NEEDS IT , then it can go on global navigation. Otherwise, you're wasting precious navigation space for links nobody wants. Still really need a selection of staff to have one-click access to something?  That's fine, you should look at implementing a personalised list of shortcuts on the homepage that each user can manage themselves.  That way that specialised safety system they access everyday takes up their screen space and no one else's. That brings me to : How To Set Up a Personalised Shortcuts List on a SharePoint Site This is almost a golden rule for me, what're your thoughts?

SharePoint 2013 - Hide Root Node Link in Global Navigation using CSS

The other solutions I've found regarding this involve javascript/jquery.  Was unable to find any CSS that resolves the issue nicely. This seems to have resolved the issue for me so far without compromising any other areas of the site.  It hides the initial link and then goes back to displaying the rest of the navigation as per normal: <style type="text/css"> .ms-core-listMenu-horizontalBox li.static > a{ display: none !important; } .ms-core-listMenu-horizontalBox li.static > ul a{ display: block !important; } </style> Liked this post?  Check out my other posts regarding Global Navigation here: What Should Be Allowed To Go I n Global Navigation? The Best OOTB Cross-Site Navigation Solution for SharePoint 2013/2016/Online