Title: 2jmarshall's Replies | WordPress.org

---

# 2jmarshall

  [  ](https://wordpress.org/support/users/2jmarshall/)

 *   [Profile](https://wordpress.org/support/users/2jmarshall/)
 *   [Topics Started](https://wordpress.org/support/users/2jmarshall/topics/)
 *   [Replies Created](https://wordpress.org/support/users/2jmarshall/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/2jmarshall/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/2jmarshall/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/2jmarshall/engagements/)
 *   [Favorites](https://wordpress.org/support/users/2jmarshall/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wordpress installed running homepage and backend but nothing else](https://wordpress.org/support/topic/wordpress-installed-running-homepage-and-backend-but-nothing-else/)
 *  Thread Starter [2jmarshall](https://wordpress.org/support/users/2jmarshall/)
 * (@2jmarshall)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/wordpress-installed-running-homepage-and-backend-but-nothing-else/#post-4287227)
 * Beautiful!
 * I changed them from “Post name” back to default, and it worked. Then I was able
   to change them back to “Post name”!
 * I Appreciate the help!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Responsive] Active page get repeated menu name](https://wordpress.org/support/topic/active-page-get-repeated-menu-name/)
 *  Thread Starter [2jmarshall](https://wordpress.org/support/users/2jmarshall/)
 * (@2jmarshall)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/active-page-get-repeated-menu-name/#post-4049312)
 * Yeah I didn’t notice that slide up before…
 * Here is the header code.
 *     ```
       <?php
   
       // Exit if accessed directly
       if ( !defined('ABSPATH')) exit;
   
       /**
        * Header Template
        *
        *
        * @file           header.php
        * @package        Responsive
        * @author         Emil Uzelac
        * @copyright      2003 - 2013 ThemeID
        * @license        license.txt
        * @version        Release: 1.3
        * @filesource     wp-content/themes/responsive/header.php
        * @link           http://codex.wordpress.org/Theme_Development#Document_Head_.28header.php.29
        * @since          available since Release 1.0
        */
       ?>
       <!doctype html>
       <!--[if !IE]>      <html class="no-js non-ie" <?php language_attributes(); ?>> <![endif]-->
       <!--[if IE 7 ]>    <html class="no-js ie7" <?php language_attributes(); ?>> <![endif]-->
       <!--[if IE 8 ]>    <html class="no-js ie8" <?php language_attributes(); ?>> <![endif]-->
       <!--[if IE 9 ]>    <html class="no-js ie9" <?php language_attributes(); ?>> <![endif]-->
       <!--[if gt IE 9]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
       <head>
   
       <meta charset="<?php bloginfo('charset'); ?>" />
       <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
       <title><?php wp_title('|', true, 'right'); ?></title>
   
       <link rel="profile" href="http://gmpg.org/xfn/11" />
       <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
   
       <?php wp_enqueue_style('responsive-style', get_stylesheet_uri(), false, '1.8.9');?>
   
       <?php wp_head(); ?>
       </head>
   
       <body <?php body_class(); ?>>
   
       <?php responsive_container(); // before container hook ?>
       <div id="container" class="hfeed">
   
           <?php responsive_header(); // before header hook ?>
           <div id="header">
           <?php responsive_header_top(); // before header content hook ?>
               <?php if (has_nav_menu('top-menu', 'responsive')) { ?>
       	        <?php wp_nav_menu(array(
       				    'container'       => '',
       					'fallback_cb'	  =>  false,
       					'menu_class'      => 'top-menu',
       					'theme_location'  => 'top-menu')
       					);
       				?>
               <?php } ?>
   
           <?php responsive_in_header(); // header hook ?>
   
       	<?php if ( get_header_image() != '' ) : ?>
   
               <div id="logo">
                   <a href="<?php echo home_url('/'); ?>"><img src="<?php header_image(); ?>" width="<?php if(function_exists('get_custom_header')) { echo get_custom_header() -> width;} else { echo HEADER_IMAGE_WIDTH;} ?>" height="<?php if(function_exists('get_custom_header')) { echo get_custom_header() -> height;} else { echo HEADER_IMAGE_HEIGHT;} ?>" alt="<?php bloginfo('name'); ?>" /></a>
               </div><!-- end of #logo -->
   
           <?php endif; // header image was removed ?>
   
           <?php if ( !get_header_image() ) : ?>
   
               <div id="logo">
                   <span class="site-name"><a href="<?php echo home_url('/'); ?>" title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>" rel="home"><?php bloginfo('name'); ?></a></span>
                   <span class="site-description"><?php bloginfo('description'); ?></span>
               </div><!-- end of #logo -->  
   
           <?php endif; // header image was removed (again) ?>
   
           <?php get_sidebar('top'); ?>
   
       				<?php wp_nav_menu(array(
       				    'container'       => 'div',
       						'container_class'	=> 'main-nav',
       						'fallback_cb'	  =>  'responsive_fallback_menu',
       						'theme_location'  => 'header-menu')
       					);
       				?>
   
                   <?php if (has_nav_menu('sub-header-menu', 'responsive')) { ?>
       	            <?php wp_nav_menu(array(
       				    'container'       => '',
       					'menu_class'      => 'sub-header-menu',
       					'theme_location'  => 'sub-header-menu')
       					);
       				?>
                   <?php } ?>
          <?php responsive_header_bottom(); // after header content hook ?>
          </div><!-- end of #header -->
           <?php responsive_header_end(); // after header container hook ?>
   
       	<?php responsive_wrapper(); // before wrapper container hook ?>
           <div id="wrapper" class="clearfix">
       		<?php responsive_wrapper_top(); // before wrapper content hook ?>
       		<?php responsive_in_wrapper(); // wrapper hook ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [pages not displaying after moving site to root folder](https://wordpress.org/support/topic/pages-not-displaying-after-moving-site-to-root-folder/)
 *  Thread Starter [2jmarshall](https://wordpress.org/support/users/2jmarshall/)
 * (@2jmarshall)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/pages-not-displaying-after-moving-site-to-root-folder/#post-4048808)
 * changed the permalinks back to default. fixed it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meteor Slides] On mobile devices slides stay in foreground](https://wordpress.org/support/topic/on-mobile-devices-slides-stay-in-foreground/)
 *  [2jmarshall](https://wordpress.org/support/users/2jmarshall/)
 * (@2jmarshall)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/on-mobile-devices-slides-stay-in-foreground/#post-3393698)
 * Yes, thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meteor Slides] On mobile devices slides stay in foreground](https://wordpress.org/support/topic/on-mobile-devices-slides-stay-in-foreground/)
 *  [2jmarshall](https://wordpress.org/support/users/2jmarshall/)
 * (@2jmarshall)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/on-mobile-devices-slides-stay-in-foreground/#post-3393684)
 * I am having the same issue and was unable to resolve the issue with the z-index?
 * [http://www.showmeboykins.com/build/](http://www.showmeboykins.com/build/)

Viewing 5 replies - 1 through 5 (of 5 total)