• I’m working on a creating a site with Twist of Ten 1.29 by David Gwyer.

    I have removed the title and site tag from my header on the front page by pasting “#header h1 { display:none }” at the bottom of my stylesheet.

    Unfortunately, the title and site tag still appear on the pages. I’ve searched the forums and the web but can’t find any answers on how to remove them.

    I know it’s got to be very easy and maybe I’m missing something but please help!

    The site I’m working on is RiosAndMcGarrigle.com

    Thanks,

    Bob

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter bittenbyazebra

    (@bittenbyazebra)

    Well, it looks like I figured out a work-around. It may not be perfect but it does the trick!

    I simply changed the opacity of the color of the Site name and site tage to an opacity of 0 by adding this to the end of the description: opacity: 0;

    See below:

    #site-title a {
    color: #333; /* DG – 25.06.2010 */
    font-weight: bold;
    text-decoration: none;
    opacity: 0;

    }
    #site-description {
    position: relative; /* DG – 24.06.2010 */
    left: 16px; /* DG – 24.06.2010 */
    top: 5px; /* DG – 24.06.2010 */
    z-index: 1; /* DG – 24.06.2010 */
    color: #555; /* DG – 24.06.2010 */
    font-size: 16px; /* DG – 24.06.2010 */
    line-height:22px;
    opacity: 0;

    #site-title { display:none }

    if you look into header.php, you will see how it is done differently for the other pages.

    here is the corresponding code:

    <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
    				<<?php echo $heading_tag; ?> id="site-title">
    					<span>.....

    if you don’t want to use
    display: none;
    then
    visibility: hidden;
    would probably do the same trick.

    Thread Starter bittenbyazebra

    (@bittenbyazebra)

    So, for the site description, I would add:

    #site-description { display:none }

    Right?

    I guess either way works — reducing the opacity of the font color to 0 or adding what you suggested.

    I guess this is now solved?

    Thanks!

    Bob

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove title and sitetags from pages’ is closed to new replies.