Remove Left Navigation Panel in SharePoint 2013

Hello Readers,
 
We developers have been experiencing a lot of issue when we have a SharePoint site where we want the left navigation to be removed but even removing the links from the navigation the panel still stays there making the site look and feel to be disordered.

In that case I have figured out a way how to remove it without much effort. 
  1. Open the page where you want the left navigation to be removed.

  2. Edit the page.

  3. Add a Script editor or a Content editor on the site.

  4. Paste the code below in it.

  5. Click on Save.
Your left navigation panel will be gone.
 
Code:
  1. <style type="text/css">  
  2.    #pageTitle,#sideNavBox  
  3.    {  
  4.       display:none;  
  5.    }  
  6. </style>  
Keep learning, Cheers !