header.php
-
What happened to my post? I have submitted 2 post in the last 5 min., but neither shows on the board.
Well this one made it. Could someone check my header.php file to see if you can recognize any problem that would cause the last three links in my header to stop working? The links in the sidebar work fine. https://sidneysuccess.com
………………………………………….
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head profile="https://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Selling Digital Information Products</title> <meta content="Sidney McLean" name="author"/> <meta content="all" name="robots"/> <meta content="Webmaster tools, tips, digital information products, training, software downloads, ebooks, website feature generators, affiliate" name="description"/> <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="stylesheet" href="<?php bloginfo('template_url'); ?>/custom.css" type="text/css" media="screen" /> <!--[if lte IE 7]> <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/ie7.css" media="screen" /> <![endif]--> <!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/ie6.css" media="screen" /> <![endif]--> <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 class="custom"> <div id="container"> <div id="masthead"> <h1><a href="https://sidneysuccess.com"><?php bloginfo('name'); ?></a></h1> <h3><?php bloginfo('description'); ?></h3> </div> <ul id="nav"> <li><a <?php if (is_home()) echo('class="index.php" '); ?>href="https://sidneysuccess.com">Home</a></li> <li><a <?php if (is_page('archives')) echo('class="archives" '); ?>href="https://sidneysuccess.com/?page_id=13">archives</a></li> <li><a <?php if (is_page('about me')) echo('class="about me" '); ?>href="https://sidneysuccess.com/?page_id=5">about me</a></li> <li><a <?php if (is_page('contact')) echo('class="contact" '); ?>href="https://sidneysuccess.com/?page_id=11">contact</a></li> <li><a <?php if (is_page('sitemap')) echo('class="sitemap" '); ?>href="https://sidneysuccess.com/?page_id=19">sitemap</a></li> <li class="rss"><a href="<?php bloginfo('rss2_url'); ?>">RSS</a></li> </ul> <div id="header_img"> <?php if (is_home()) { ?> <img src="<?php bloginfo('template_url'); ?>/images/header_<?php echo(rand(1,5)); ?>.jpg" width="770" height="140" alt="<?php bloginfo('name'); ?> header image 1" title="<?php bloginfo('name'); ?> header image 1" /> <?php } elseif (is_single()) { ?> <img src="<?php bloginfo('template_url'); ?>/images/header_<?php echo(rand(1,5)); ?>.jpg" width="770" height="140" alt="<?php bloginfo('name'); ?> header image 2" title="<?php bloginfo('name'); ?> header image 2" /> <?php } elseif (is_page()) { ?> <img src="<?php bloginfo('template_url'); ?>/images/header_<?php echo(rand(1,5)); ?>.jpg" width="770" height="140" alt="<?php bloginfo('name'); ?> header image 3" title="<?php bloginfo('name'); ?> header image 3" /> <?php } elseif (is_archive()) { ?> <img src="<?php bloginfo('template_url'); ?>/images/header_<?php echo(rand(1,5)); ?>.jpg" width="770" height="140" alt="<?php bloginfo('name'); ?> header image 4" title="<?php bloginfo('name'); ?> header image 4" /> <?php } else { ?> <img src="<?php bloginfo('template_url'); ?>/images/header_<?php echo(rand(1,5)); ?>.jpg" width="770" height="140" alt="<?php bloginfo('name'); ?> header image 5" title="<?php bloginfo('name'); ?> header image 5" /> <?php } ?> </div>
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘header.php’ is closed to new replies.