tmwalter
Forum Replies Created
Viewing 1 replies (of 1 total)
-
Forum: Themes and Templates
In reply to: partial menu links not showing upI 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() ) { ?> » 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)