Hide the Title On A SharePoint 2013 And Office 365 Site Using CSS

While we are working on SharePoint 2013 and Office 365 sites, most of our clients request there home page should not have a Title as in the top because they want their Title to be in different font as compared to the default one provided on their home page by Site Feature.

In those cases I don’t want you to take a lot of time and write a code to hide those files. Just do the following steps:

  1. Edit the page you want to remove the left navigation.

  2. Add a Script Editor web part.

  3. Paste the following code.

    Code:
    1. <style type="text/css">  
    2. #pageTitle  
    3. {  
    4. display:none;  
    5. }  
    6. </style>  
  4. Your Title of the site will be gone.

Keep learning!
Cheers !