Where is the 'skip-link' definition?
-
I’m currently modifying theme ‘Organic’ to include a ‘wp_nav_menu’. I have added this code to ‘header.php’ from another template (see below). It works, but it show both the text ‘Skip to content’ and the menu. With FireBug I can see that the class ‘skip-link’ is not defined. I have searched for it in the template I’m copying from, but I can’t find it.
Where is ‘skip-link’ defined?
<div id="access" role="navigation"> <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?> <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div> <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?> <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?> </div><!-- #access -->
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Where is the 'skip-link' definition?’ is closed to new replies.