• Resolved LoboStylez

    (@lobostylez)


    Hey guys, i was wondering if someone could help me out.

    So far so good on my end. Im trying to remove the website title from every page because it clashes with my header image.

    As you can tell, the home page is fine. https://s.olid.us and looks great!
    But if you press the ‘Sections’ button, you see the nasty ‘Solidus’ text again above the menu.

    i already have the CSS switch in place to remove it (or so i thought) from every page. But it only works on the home page.

    i have #header h1 { display:none; !important} inserted into my CSS but it only takes it off of the first page.

    I dont wanna remove my title from the settings because of the whole, search engine issue.

    If anyone could shed some light, it would be greatly appreciated.

Viewing 6 replies - 1 through 6 (of 6 total)
  • esmi

    (@esmi)

    Try adding text-indent:-9999px; to:

    #site-title #logo {
        float: left;
        font-size: 400%;
        font-style: normal;
        font-weight: bold;
        line-height: 60px;
        margin: 0;
        padding: 0;
    }

    in style.css.

    Thread Starter LoboStylez

    (@lobostylez)

    Awesome, that worked perfect! Thanks so much.

    But now i have another question that needs a little assistance.

    Anyone know how i would move the overall content down a few 100px to show off the header?

    esmi

    (@esmi)

    Not sure how far down you want to push it down but try changing the last value in:

    $#site-title {
        padding: 4em 0 3.6em;
    }

    to something like 200px.

    Thread Starter LoboStylez

    (@lobostylez)

    Has anyone ever told you, that you rock lately? because you do.

    Thanks so much for your help. you put me at 100%! ??

    esmi

    (@esmi)

    Glad I could help. ??

    jtbarnes

    (@jtbarnes)

    I would like to do the same thing – hide the titles on every page. I am using the standard Twenty Ten theme. I saw in a closed topic to do the following:

    In the page.php file, change the code to:
    <?php // the_title(); ?>

    However, this code does not appear in my page.php file.

    I did find similar code in the loop-page.php file, but it seems to deal with posts – not pages:

    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <?php if ( is_front_page() ) { ?>
    <h2 class="entry-title"><?php the_title(); ?></h2>
    <?php } else { ?>
    <h1 class="entry-title"><?php the_title(); ?></h1>
    <?php } ?>

    Can you tell me in the Twenty Ten template where I would be able to change it so the titles do not appear on the pages?

    Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Hiding Site title on EVERY page [Mystique]’ is closed to new replies.