On my website everything is going smoothly with this theme but on my ‘learn more’ page under the menu there is the parallax image with a white space under. I want to keep my navigation bar at the top but remove  the parallax and white space. I tried to insert a php file and it removed the header but it also got rid of the menu…I just want the menu. Thanks!
http://www.fitbyzip.com/home
<?php
/**
 * Template Name: Clean Page
 * This template will only display the content you entered in the page editor
 */
?>
<html <?php language_attributes(); ?> class=”no-js”>
<head>
	<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
	<meta name=”viewport” content=”width=device-width, initial-scale=1″>
	<?php wp_head(); ?>
</head>
<body>
<?php
	while ( have_posts() ) : the_post();
		the_content();
	endwhile;
?>
<?php wp_footer(); ?>
</body>
</html>