2014-10-13 4 views
0

내 포스트 백 엔드 편집 중, 내 페이지 버튼으로 메뉴 버튼 스크롤을 지원하지 않습니다. 내가 메뉴 모음을 만들 수 있습니다 페이지와 스크롤하지만,이 버튼은 조금 다릅니다. 그것은 클릭 할 때 메뉴 옵션을 보여주기 위해 확장되는 작은 상자입니다.토글 메뉴 버튼을 붙이십시오.

확장되지 않은 메뉴 버튼을 페이지와 함께 스크롤하려면 어떻게해야합니까? 아래 나는 파이어 폭스에서 HTML을 검사 할 때 내가 여기

<button class = "menu-toggle x"></button>)

는 header.php 코드 (미안 그것은 이상한 모양의 발견 같은 DIV 버튼 클래스가 포함되어 내 header.php 코드입니다 - 문제가지고 있고 있었다 그것은

<button class="menu-toggle x"> 

      <span class="lines"></span> 

      <span class="screen-reader-text"><?php _e('Primary Menu', 'intergalactic'); ?></span> 

     </button> 

     <div class="slide-menu"> 

      <nav id="site-navigation" class="main-navigation" role="navigation"> 

       <?php wp_nav_menu(array('theme_location' => 'primary')); ?> 

      </nav><!-- #site-navigation --> 

      <?php if (has_nav_menu('social')) : ?> 

       <?php wp_nav_menu(array('theme_location' => 'social', 'depth' => 1, 'link_before' => 

'<span class="screen-reader-text">', 'link_after' => '</span>', 'container_class' => 'social-links') 
); ?> 
      <?php endif; ?> 

      <?php if (is_active_sidebar('sidebar-1')) { 

       get_sidebar(); 

      } ?> 

     </div> 

답변

0

파스칼,

이 ... 아주 간단하게, 너무 일반적으로 CSS와 프런트 엔드에서 처리됩니다 무언가이다) 여기에 읽을

.menu-toggle{ 
    position:fixed; 
    top:0px; /* or whatever is best for your design */ 
    right:0px; /* or whatever is best for your design */ 
    z-index: 999; /* this assures that it stays in front of all other content*/ 
} 
+0

그게 ... 저스틴 고맙습니다. – pascale