• Resolved jedmess

    (@jedmess)


    Sure someone of you had the same issue with title tag:

    If in WP General Options i write in a name in the weblog title field, this will be correctly generated and published among the title tags, BUT it will also show up on the blog Header!

    My blog header is an image, so: how can i keep my title tag without having it showing up on the on-line header?

    Jm

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can find where the XHTML is referenced in the style sheet and change the display to none.

    For example,

    If the XHTML is

    <h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1>

    And if it’s located in

    <div id="header">

    Then you would go to your style sheet and look for something along the lines of

    #header h1 or #header h1 a

    And once you find this you would set the display property to none. So the final outcome would be something similar to this:


    #header h1
    {
    display:none;
    }

    Thread Starter jedmess

    (@jedmess)

    Many thanks Dave, it worked properly. Jm

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Not want Title showing up on the blog but only in meta’ is closed to new replies.