• Hi!

    I have a problem with the blog title showing on top of my custom header.
    I’ve been searching for a solution and found the display:none; command. I’ve used that in the Style.css and it did remove the blog title…..but only from the home page, it’s still there on all the other pages. I have no knowledge of CSS by the way.

    /* headings */
    h1{display:none;font-weight:normal;font-size:270%;letter-spacing:-.04em;line-height:100%;margin:.8em 0 .2em;letter-spacing:-0.04em;}
    h2{font-weight:normal;font-size:200%;letter-spacing:-.04em;line-height:110%;margin:.7em 0 .2em;letter-spacing:-0.03em;}
    h3{font-size:160%;font-weight:normal;letter-spacing:-.04em;line-height:110%;margin:.7em 0 .2em;letter-spacing:-0.02em;}
    h4{font-size:140%;font-weight:bold;margin:.7em 0 .2em;letter-spacing:-0.02em;}
    h5{font-family:”Palatino Linotype”, Georgia, Serif;font-size:140%;font-weight:bold;margin:.5em 0 .2em;letter-spacing:-0.02em;}
    h6{font-size:120%;font-weight:normal;text-transform:uppercase;margin:.5em 0 .2em;}

    I tried adding the command to all the lines above, but this didn’t have any effect.
    Does anyone know how to solve this?

    Thanks!!!!
    https://www.nopressure.ca is the blog’s address.

Viewing 4 replies - 1 through 4 (of 4 total)
  • remove below code from header.php file

    <div id="site-title" class="clear-block">
     <h1 id="logo"><a href="<?php bloginfo('home') ?>"><?php bloginfo("name")?></a></h1>
    </div>

    Thread Starter iv007

    (@iv007)

    It actually looks a little different from what you describe:

    <div id=”site-title” class=”clear-block”>

    <?php mystique_logo(); ?>
    <?php if(get_bloginfo(‘description’)): ?><p class=”headline”><?php bloginfo(‘description’); ?></p><?php endif; ?>

    <?php do_action(‘mystique_header’); ?>

    </div>

    Thanks for the help!

    Thread Starter iv007

    (@iv007)

    Anyone a clue about this Mystique question?

    if you are unable to follow @chinmoy here is your second option
    add

    #logo{
    display:none;
    }

    artsmc.net

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Can only remove blog title from my home page’ is closed to new replies.