Help with wordpress header code

Discussion in 'WordPress' started by mpak11, Aug 15, 2010.

  1. #1
    I want to use this wordpress default theme...

    http://www.bestcoppercookwares.com/

    How can I disable/remove the title and blog description above the header so that the header will be on the very top of the screen, with no white spaces or text above. Is that possible?
     
    mpak11, Aug 15, 2010 IP
  2. sd2001

    sd2001 Peon

    Messages:
    489
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You'll have to modify both the header.php and the stylesheet. I've never messed around with that particular theme so I can't be more specific but I'm sure if you Google around you can find someone who's done similar.
     
    sd2001, Aug 15, 2010 IP
  3. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #3
    To remove the heading and description, delete these lines from header.php:
    
    <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
    <<?php echo $heading_tag; ?> id="site-title">
    <span>
    <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
    </span>
    </<?php echo $heading_tag; ?>>
    <div id="site-description"><?php bloginfo( 'description' ); ?></div>
    
    Code (markup):
    To remove the gap, delete these lines from style.css:
    
    #header {
       padding: 30px 0 0 0;
    }
    
    Code (markup):
    If you want to remove the gap at the very top, you also need to delete the wrapper's top margin (margin-top: 20px;):
    
    #wrapper {
       background: #fff;
       margin-top: 20px;
       padding: 0 20px;
    }
    
    Code (markup):
    But leave background and padding in there or else it will look weird :)
     
    Last edited: Aug 15, 2010
    Cash Nebula, Aug 15, 2010 IP
  4. Oskar28

    Oskar28 Active Member

    Messages:
    564
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #4
    Wow.. this is nice and helpful.. or if the OP wants there more FREE WP Theme online just search for it.. more themes that are niche related..
     
    Oskar28, Aug 15, 2010 IP
  5. mpak11

    mpak11 Guest

    Messages:
    234
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Just the kind of help I was looking for.
    Thanks a lot!
     
    mpak11, Aug 15, 2010 IP
  6. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #6
    You're welcome. :) It looks a bit bare without a heading. Let me know if want one added inside the image.
     
    Cash Nebula, Aug 15, 2010 IP