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:

page_name

This can be hidden using some custom CSS in a Script Editor web part:

<style>
#DeltaPlaceHolderPageTitleInTitleArea
{ display: none; } </style>

page_name_gone

This does, of course, leave an empty space so we can move everything up by including the following CSS:

#DeltaPlaceHolderMain
{
   margin-top:-64px;
}

#notificationArea
{
   margin-top:64px;
}

Now I have a cleaner looking page without the page name at the top:

page_name_gone_2

[BlogBookmark] [Blogsvine] [del.icio.us] [Digg] [Facebook] [Furl] [Google] [LinkedIn] [MySpace] [Reddit] [Slashdot] [StumbleUpon] [Twitter] [Windows Live] [Yahoo!] [Email]