• Resolved kellysh

    (@kellysh)


    Ok the new WP version is great but I’m not loving the themes aspect. Way too many php files to figure out where I need to start. All of the themes are so different that finding the answer to this problem may work well for one theme but not for another.
    Anyway, I’ve downloaded and tried modifying the Blue Bye You theme from over at Alex King’s site. I pretty much know what I want but for the life of me I can’t seem to find where I delete the title and description. Do I do it in the header.php, the main template? I’d prefer to have an image displaying my title rather than some nondescript text.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator James Huff

    (@macmanx)

    Edit this section of the Header Template (header.php):

    <div id="header"> <!-- Begin Header Div -->
    <h1><a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name'); ?></a></h1>
    <p class="description"><?php bloginfo('description'); ?>

    </div> <!-- End Header Div -->

    Alternatively, you could open the style.css file, find the #header h1 and .description entries, and add this line to each:

    display: none;

    Thread Starter kellysh

    (@kellysh)

    The “display: none;” worked like a charm! Thank you! Something so simple…I must be tired! =)

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Deleting Title &Description….HOW?!?’ is closed to new replies.