Viewing 11 replies - 1 through 11 (of 11 total)
  • i’m not sure but it looks like that area gets covered by your header-graphic, but yeah I saw the blue area for a second as it loaded so that was kind of strange. What theme are you basing this on (base, ha, pun intended)?

    Thread Starter whitesox247

    (@whitesox247)

    no haha I’m talking about the title of the site. The thing all the way at the top above the url area. you know what im talking about?

    i see 🙂 You mean you don’t want your site to show the title “Mozilla Firefox”?? 🙂

    I have some code like this, near the top of my header.php

    <title>
    <?php if (is_home () ) {
    bloginfo('name'); echo " - "; bloginfo('description');
    } elseif ( is_category() ) {
    bloginfo('name'); echo " - "; single_cat_title();
    } elseif (is_single() || is_page() ) {
    single_post_title(); echo " from "; bloginfo('name');
    } elseif (is_search() ) {
    bloginfo('name'); echo " search results: "; echo wp_specialchars($s);
    } else { wp_title('',true); }
    ?>
    </title>

    that comes from a version of the default theme. Hope this helps ya. You can strip it down to a more basic way, but that fancy way gives different titles depending what part of the site you’re on.

    Thread Starter whitesox247

    (@whitesox247)

    that’s not working…can anyone else help? I’m trying to change the title of my site so it doesn’t say Mozilla Firefox please help!

    view source you see this

    <title> </title>

    you need to edit that in your templates files. Probably under header.php

    Thread Starter whitesox247

    (@whitesox247)

    <title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>

    that’s the only thing in the header that has the title stuff in it…what do I change?

    It works: look here:
    http://whitesox247.com/?p=7

    Your issue is that you do NOT have a blog title in the admin > Options > General!

    Thread Starter whitesox247

    (@whitesox247)

    when i put in the name in weblog title it does show up at the top but it also shows up on my banner! I just want it to stay at the top and not my banner! What should I do?

    add to your stylesheet to the h1 section:
    display none;

    Thread Starter whitesox247

    (@whitesox247)

    which one?

    There is only one place where the h1 is alone!

    h1 {
    font-size: 4em;
    text-align: center;
    display:none;
    	}

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Title help’ is closed to new replies.