• How to hide the sidebar in SharePoint (en)

    How to hide the sidebar in SharePoint (en)

    Quick and easy, that’s an afraIT shorty! Simply add a Script Editor Web Part to your page and add the script below. <style type=”text/css”> #sideNavBox {DISPLAY: none} #contentBox {MARGIN-LEFT: 50px} .ms-list-itemLink { display:none; } </style> 2. Basically the CSS above hides the left navigation Div, and then sets the content area to 50px. 3. You can also set margin-left to e.G. 0px or even -30px. Not the nicest way, but sometimes a quick and dirty solutions is quite handy. Don’t forget to like my tiwtter or facebook and share my blog post all over the world 🙂    

    Read More

  • How to hide the sidebar in SharePoint (de)

    How to hide the sidebar in SharePoint (de)

    Schnell und einfach, das ist ein afraIT shorty! 1. Füge einen Skript-Editor Web Part der Seite hinzu auf welcher die linke Navigation ausgeblendet werden soll und füge das unten stehende Skript ein. <style type=”text/css”> #sideNavBox {DISPLAY: none} #contentBox {MARGIN-LEFT: 50px} .ms-list-itemLink { display:none; } </style> 2. Dieses CSS versteckt das Div der linken Navigation und setzt den Inhalt mit einem linken Rand von 50px. 3. Auch ist es möglich einen linken Rand von 0px oder z.B. -30px zu setzen. Dies ist natürlich nicht der beste Weg, da dies auf jeder Siete gemacht werden müsste. Ich empfehle daher es direkt in die

    Read More