2016-06-27 98 views
0

頁腳CSS右邊會出現在每一頁上除了single.php網頁。該瀏覽器在CSS中的每一頁上寫着:WordPress的頁腳CSS不起作用

#sidebar + #wrapper + #footer { 
margin-left:18em; 
} 

但在滿後頁

#sidebar + #wrapper + #footer { 
margin-left: 18em; 
} 

這是行不通的

頁腳CSS

/* Footer */ 

    #sidebar + #wrapper + #footer { 
     margin-left: 18em; 
    } 

     @media screen and (max-width: 1280px) { 

      #sidebar + #wrapper + #footer { 
       margin-left: 0; 
      } 

     } 

    #footer > .inner a { 
     border-bottom-color: rgba(255, 255, 255, 0.15); 
    } 

     #footer > .inner a:hover { 
      border-bottom-color: transparent; 
     } 

    #footer > .inner .menu { 
     font-size: 0.8em; 
     color: rgba(255, 255, 255, 0.15); 
    } 

    #header + #wrapper + #footer > .inner { 
     margin: 0 auto; 
    } 

footer.php

 <!-- Footer --> 
      <footer id="footer" class="wrapper style1-alt"> 
       <div class="inner"> 
        <ul class="menu"> 

        <?php if (! dynamic_sidebar('footer_sidebar')) : ?> 
         <li>&copy; Untitled. All rights reserved.</li> 
        <?php endif; ?> 


        </ul> 
       </div> 
      </footer> 

     <!-- Scripts --> 

<?php wp_footer(); ?> 
    </body> 
</html> 

的single.php

<?php get_header(); ?> 

     <!-- Wrapper --> 
      <div id="wrapper"> 

       <!-- One --> 
        <section id="one" class="wrapper style2 spotlights"> 

        <?php while(have_posts()) : the_post(); ?> 
         <section> 
          <div class="content"> 
           <div class="sin_content"> 
            <h2><?php the_title(); ?></h2> 
             <?php echo do_shortcode("[easy_image_gallery]"); 
             remove_filter('the_content', 'easy_image_gallery_append_to_content'); ?> 
         </div> 
            <?php the_content(); ?> 

           </div> 
          </div> 
         </section> 
        <div class="wordpress_commentss-hd"> 
         <div class="wordpress_commentss"> 
          <?php comments_template(); ?> 
         </div> 
        </div> 
        <?php endwhile; ?> 


        </section> 
      </div> 

<?php get_footer(); ?> 

爲什麼它不完全帖子頁,而工作的作品在其他頁罰款?

+0

份額代碼,直到這meaningles –

+0

你嘗試過使用'#sidebar,#wrapper指定,#footer'? – Lee

+1

這使用相鄰的CSS選擇器(+),並且只有在側邊欄,包裝器和頁腳緊跟着彼此作爲同胞時才能使用。我想single.php可能會缺少其中之一或者在所選元素之間有一些元素。 – Johan

回答

0

哈哈,發現它:)你有一個太多的關閉div的。刪除之間的single.php的一個:

remove_filter('the_content', 'easy_image_gallery_append_to_content'); ?> 
</div> <--- That one! 
    <?php the_content(); ?> 
+1

非常感謝你,你是非常有幫助的,你拯救了我的一天:)) –