Forums

[resolved] Not want Title showing up on the blog but only in meta (3 posts)

  1. Jedmess
    Member
    Posted 5 years ago #

    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

  2. David Yeiser
    Member
    Posted 5 years ago #

    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;
    }

  3. Jedmess
    Member
    Posted 5 years ago #

    Many thanks Dave, it worked properly. Jm

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags