help PHP header top nav problem

website www.centralsecuritysolutions.com

as you can see i want the pages on the top nav menu to go all the way across but there not :frowning: can anyone tell me how to fix the script … header php is posted here and the index script below that

headed php:

<?php if (is_home()) { ?> <?php bloginfo('name'); ?> <?php bloginfo('description'); ?> <?php } else { ?> <?php wp_title($sep = ''); ?> <?php bloginfo('name'); ?> <?php } ?> <?php if(is_search()) { ?> <?php }?> <?php wp_head(); ?>
</ul>
  <?php bloginfo('name'); ?>
  <p><P>
  
  <?php bloginfo('description'); ?>
  </a></h1>
    <?php wp_list_pages('title_li='); ?>

INDEX php::

<?php get_header(); ?>
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?>
On <?php the_time('M.d.y'); ?> , In <?php the_category(', ') ?> , by <?php the_author_posts_link(); ?>
<?php _e('Comments'); ?> ( <?php comments_number(0, 1, '%'); ?> )
<?php $postimageurl = get_post_meta($post->ID, 'post-img', true); if ($postimageurl) { ?>
<?php the_title_attribute(); ?>
<?php } ?>
<?php the_excerpt(); ?>

<?php _e('Leave Your'); ?> <?php _e('Comments'); ?> »

<?php endwhile; ?> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?> <?php /*
  • <?php next_posts_link('« Older Entries') ?>
  • <?php previous_posts_link('Newer Entries »') ?>
*/ ?> <?php else : ?>

No Posts Were Found

<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Sponsor our Newsletter | Privacy Policy | Terms of Service