Title: tmwalter's Replies | WordPress.org

---

# tmwalter

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

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

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [partial menu links not showing up](https://wordpress.org/support/topic/partial-menu-links-not-showing-up/)
 *  [tmwalter](https://wordpress.org/support/users/tmwalter/)
 * (@tmwalter)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/partial-menu-links-not-showing-up/#post-1223812)
 * I also had the disappearing box problem and found it’s fix in the original header.
   php-code. You just have to fill in a “<div></div>” after the <h1>-part including
   your pagetitle:
 *     ```
       <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>
   
       <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
   
       <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
       <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
       <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
   
       <?php wp_head(); ?>
       </head>
       <body>
       <div id="menu">
                       <h1><a href="<?php bloginfo('url'); ?>"><b>AMY</b>&<b>PINK</b></a></h1>
                      <div></div>
                       <ul>
           <li> <a href="<?php bloginfo('url'); ?>/about">LINK left-1</a></li>
           <ul>
             <li><a href="/photos">LINK Right-1</a></li>
             <li><a href="/video">LINK Right-2</a></li>
             <li><a href="/contact">LINK Right-3</a></li>
           </ul>
           <li><a href="<?php bloginfo('url'); ?>/blog">LINK left-2</a></li>
           <li><a href="<?php bloginfo('url'); ?>/projects">LINK left-3</a></li>
         </ul>
   
               </div>
       ```
   
 * I also included the answer to your link-editing question. 😉

Viewing 1 replies (of 1 total)