簡體   English   中英

僅顯示DIV HOMEPAGE

[英]Show only DIV HOMEPAGE

我想將.masthead-fixed .the main剩余頁面放在...上,而不是放在首頁上

<div id="page" class="hfeed site">

 <?php if (!is_home() || !is_front_page()) { ?> 

<?php if ( get_header_image() ) : ?>
<div id="site-header">
    <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
        <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
    </a>
</div>
<?php endif; ?>

<header id="masthead" class="site-header" role="banner">

    <div class="header-main">
        <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>

        <div class="search-toggle">
            <a href="#search-container" class="screen-reader-text"><?php _e( 'Search', 'twentyfourteen' ); ?></a>
        </div>

        <nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation">
            <button class="menu-toggle"><?php _e( 'Primary Menu', 'twentyfourteen' ); ?></button>
            <a class="screen-reader-text skip-link" href="#content"><?php _e( 'Skip to content', 'twentyfourteen' ); ?></a>
            <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
        </nav>
    </div>

    <div id="search-container" class="search-box-wrapper hide">
        <div class="search-box">
            <?php get_search_form(); ?>
        </div>
    </div>

</header><!-- #masthead -->
<?php } ?> 

這是網站:

http://avocat.dac-proiect.ro/wp/

這是代碼CSS:

.masthead-fixed .site-main {
 margin-top: 48px;
 display:none;

你是如何解決這個問題的?

我建立了一個Wordpress主題,我希望只包含內容,而不要在其他頁面上。

.masthead-fixed, .site-main {

你需要設置一個昏迷來影響許多html元素的css規則。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM