Wordpress - 如何删除标题[关闭]

I added a Wordpress blog on a website. This is how it looks so far: http://alweso.2ap.pl/blog/?m=201403

I would like to get rid of the header area - for the menu to be on top, so it resembles the non-Wordpress pages. I'm a complete newbie if it comes to PHP - what should I remove or add? I'm guessing I should play with header.php, so here's the code:

<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><?php wp_title(); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_head(); ?>
</head>

<body <?php body_class() ?>>
<div id="wrapper">
    <header id="header">
        <<?php pinboard_title_tag( 'site' ); ?> id="site-title">
            <?php if ( ( '' != get_header_image() ) &&  ( false != get_header_image() ) ) : ?>
                <a href="<?php echo home_url( '/' ); ?>" rel="home">
                    <img src="<?php header_image(); ?>" alt="<?php bloginfo( 'name' ); ?>" width="<?php echo ( pinboard_get_option( 'retina_header' ) ? absint( get_custom_header()->width / 2 ) : get_custom_header()->width ); ?>" height="<?php echo ( pinboard_get_option( 'retina_header' ) ? absint( get_custom_header()->height / 2 ) : get_custom_header()->height ); ?>" />
                </a>
            <?php endif; ?>
            <a class="home" href="<?php echo home_url( '/' ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
        </<?php pinboard_title_tag( 'site' ); ?>>
        <?php if( ! is_active_sidebar( 1 ) ) : ?>
            <<?php pinboard_title_tag( 'desc' ); ?> id="site-description"><?php bloginfo( 'description' ); ?></<?php pinboard_title_tag( 'desc' ); ?>>
        <?php endif; ?>
        <?php get_sidebar( 'header' ); ?>
        <div class="clear"></div>
        <nav id="access">
            <a class="nav-show" href="#access">Show Navigation</a>
            <a class="nav-hide" href="#nogo">Hide Navigation</a>
            <?php wp_nav_menu( array( 'theme_location' => 'primary_nav' ) ); ?>
            <div class="clear"></div>
        </nav><!-- #access -->
    </header><!-- #header -->
<?php wp_nav_menu( array( 'theme_location' => 'primary_nav' ) ); ?>

This function showing your nav menu, show you have to call this function , wherever you want to show the menu.

with CSS it can be done, in your style.css (/blog/wp-content/themes/pinboard/style.css)

ADD change next:

#site-title {
margin: 0 3.4%;
font-family: "Oswald", sans-serif;
font-size: 32px;
letter-spacing: 1px;
}

into:

#site-title {
margin: 0 3.4%;
font-family: "Oswald", sans-serif;
font-size: 32px;
letter-spacing: 1px;
visibility: hidden;
height: 0px;
}

and:

#site-title, #site-description {
margin: 0;
font-weight: 300;
float: left;
line-height: 150px;
}

into:

#site-title, #site-description {
margin: 0;
font-weight: 300;
float: left;
line-height: 150px;
visibility: hidden;
height: 0px;
}

and:

#header #searchform {
float: right;
margin: 60px 3.4% 0 3px;
}

into:

#header #searchform {
visibility: hidden;
}

it will give this result: enter image description here