Title: Need help editing Header.
Last modified: August 18, 2016

---

# Need help editing Header.

 *  Resolved [allover](https://wordpress.org/support/users/allover/)
 * (@allover)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/)
 * Hi everyone! I finally have some of my site up (still a lot of stuff I want to
   do though). Can someone please tell me how to center my title? Also, I’d like
   to change colors on my title. Does someone know how to do that? I am using the
   pool theme. [http://www.gushhappy.com](http://www.gushhappy.com)
 * Thanks in advance to anyone.
 * Oh, and please let me know what you think of my Template so far. Like I said 
   though I plan on working on it more.11

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

 *  [x9tripboarder16](https://wordpress.org/support/users/x9tripboarder16/)
 * (@x9tripboarder16)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401126)
 * You should be able to use the code “<div align=”center”>Title</div>”
 *  Thread Starter [allover](https://wordpress.org/support/users/allover/)
 * (@allover)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401127)
 * Is that in the Header template or CSS file?
 *  [x9tripboarder16](https://wordpress.org/support/users/x9tripboarder16/)
 * (@x9tripboarder16)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401128)
 * Find where your title is defined in the **header** template, and then put the
   above code around the title.
 *  [Samuel B](https://wordpress.org/support/users/samboll/)
 * (@samboll)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401130)
 * Look in your them’s style.css for something like:
 * `/* Begin Headers */`
 * h1 {
 *  padding-top: 70px;
 *  margin: 0;
 *  }
 * .description {
 *  text-align: center;
    font-color: #fff; }
 * Yours will have something else for the text-align and font color. Just change
   those values to what you like according to the above example.
 *  Thread Starter [allover](https://wordpress.org/support/users/allover/)
 * (@allover)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401131)
 * That’s my header template. I can’t find my title in it. Sorry. I am very bad 
   and new at this.
 * <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “[http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt](http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt);
   
   <html xmlns=”[http://www.w3.org/1999/xhtml”&gt](http://www.w3.org/1999/xhtml”&gt);
 * <head profile=”[http://gmpg.org/xfn/11″&gt](http://gmpg.org/xfn/11″&gt);
    <meta
   http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?
   php bloginfo(‘charset’); ?>” />
 *  <title><?php bloginfo(‘name’); ?><?php wp_title(); ?></title>
 *  <meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” /> 
   <!– leave this for stats please –>
 *  <style type=”text/css” media=”screen”>
    [@import](https://wordpress.org/support/users/import/)
   url(<?php bloginfo(‘stylesheet_url’); ?>); </style>
 *  <link rel=”Shortcut Icon” href=”<?php echo get_settings(‘home’); ?>/wp-content/
   themes/pool/images/favicon.ico” type=”image/x-icon” />
    <link rel=”alternate”
   type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?
   >” /> <link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘
   rss_url’); ?>” /> <link rel=”alternate” type=”application/atom+xml” title=”Atom
   0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />
 *  <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <?php wp_get_archives(‘
   type=monthly&format=link’); ?> <?php //comments_popup_script(); // off by default?
   > <?php wp_head(); ?> </head>
 * <body>
    <div id=”content”>
 *  <div id=”header” onclick=”location.href='<?php echo get_settings(‘home’); ?>’;”
   style=”cursor: pointer;”>
    <h1>“><?php bloginfo(‘name’); ?>
   </h1>
    </div>
 *  <div id=”pages”>
    <div class=”alignleft”>
    - 
    -  <?php wp_list_pages(‘title_li=’); ?>
 *  </div>
 *  <div id=”search”>
    <form id=”searchform” method=”get” action=”<?php echo $_SERVER[‘
   PHP_SELF’]; ?>”> <input type=”text” name=”s” id=”s” size=”20″ value=”search in
   blog…” /> </form> </div> </div>
 *  [x9tripboarder16](https://wordpress.org/support/users/x9tripboarder16/)
 * (@x9tripboarder16)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401132)
 * Your header is at:
    **<h1>”><?php bloginfo(‘name’); ?></h1>**
 * If my suggestion doesn’t work, try ‘samboll’s’
 *  Thread Starter [allover](https://wordpress.org/support/users/allover/)
 * (@allover)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401134)
 * Okay. I will try it. Thank you. 🙂
 *  Thread Starter [allover](https://wordpress.org/support/users/allover/)
 * (@allover)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401136)
 * Hey thanks to both of you. Samboll actually answered my second question. I got
   it centered but wanted to move it down once centered. So I did that in the CSS.
 * Thank you very much!
 *  Thread Starter [allover](https://wordpress.org/support/users/allover/)
 * (@allover)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401137)
 * Thanks x9Tripboarder16. 🙂
 *  [spencerp](https://wordpress.org/support/users/spencerp/)
 * (@spencerp)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401138)
 * allover, sorry I didn’t get back to you sooner with your request for this in 
   your original [thread](http://wordpress.org/support/topic/74560?replies=16). 
   =(
 * I’ve just been really busy with other stuff lately.. I had tried working on that,
   but got sidetracked with other crap.. =(
 * I’m happy to hear you’re getting closer with this though.. They should be able
   to help you better with this, then I lol.. Good luck and keep up the good work
   on your theme.. =)
 * spencerp
 *  Thread Starter [allover](https://wordpress.org/support/users/allover/)
 * (@allover)
 * [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401140)
 * Hey SpencerP. No worries dude! I appreciate your help an any aspect. 🙂
 * We all lead busy lives, haha, pleae don’t apologize. I really appreciate your
   help previously. It helped a bunch anyway!
 * Cheers!
 * Thanks for the kind words on my theme. I still have a lot more tweaking to do.

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

The topic ‘Need help editing Header.’ is closed to new replies.

 * 11 replies
 * 4 participants
 * Last reply from: [allover](https://wordpress.org/support/users/allover/)
 * Last activity: [20 years ago](https://wordpress.org/support/topic/need-help-editing-header/#post-401140)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
