Help removing text from header

Discussion in 'CSS' started by INEEDCONTENT, Jul 21, 2009.

  1. #1
    Below is the code for the header of this blog

    http://www.canaryislandtenerife.net/

    I am trying to remove "HOME" and "ABOUT" and all other pages/posts that will be listed at the top in the header as I add them, I seem to able to do anything else like change the size but not total removal, can anyone alter this or point me in the right direction? thanks



    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">

    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />

    <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_get_archives('type=monthly&format=link'); ?>
    <?php wp_head(); ?>
    </head>
    <body>

    <div id="frame">

    <div id="header">
    <div class="header-title"><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></div>
    <div class="header-description"><?php bloginfo('description'); ?></div>
    <ul class="nav">
    <li><a <?php if (is_home()) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>">home</a></li>
    <?php wp_list_pages('title_li='); ?>
    </ul>

    </div>
     
    INEEDCONTENT, Jul 21, 2009 IP
  2. renzmar

    renzmar Peon

    Messages:
    308
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    If you want to remove the menu above your page.. delete that code that I highlighted with red..

    <div id="header">
    <div class="header-title"><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></div>
    <div class="header-description"><?php bloginfo('description'); ?></div>
    <ul class="nav">
    <li><a <?php if (is_home()) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>">home</a></li>
    <?php wp_list_pages('title_li='); ?>
    </ul>


    </div>
     
    renzmar, Jul 22, 2009 IP