Suppress entry-header for a single page
		I'm trying to create a custom landing page for my site.  I need to hide the masthead, add a custom background and hide the page title (entry-header).  So far I'm 2 for three.  I can hide the masthead and add a custom background with the following code (in my child style.css of course):
.page-id-730 #masthead { display:none}
.page-id-730.custom-background {
    background-color: #ffffff;
    background-image: url('http://mysite.com/wp/wp-content/uploads/2016/01/ValBkgdLowSat4.jpg');
    background-repeat: repeat;
    background-position: top right;
    background-attachment: fixed;
}
I've tried all kinds of variations to hide the page title / entry-header with no success so far.  Ideas?  Thanks!	
	
