Changing Title in Header

9 replies
  • WEB DESIGN
  • |
How do I center the title name in the header and change the color?
#changing #header #title
  • Profile picture of the author ronc0011
    I think you are going to have to provide a little more information.
    {{ DiscussionBoard.errors[3514193].message }}
    • Profile picture of the author intmark5
      I'm looking to center the Title of my WP site inside the header. I would also like to know how you can change the color of the title lettering. It is white right now but would like it to be black.
      {{ DiscussionBoard.errors[3516103].message }}
      • Profile picture of the author Istvan Horvath
        Originally Posted by intmark5 View Post

        I'm looking to center the Title of my WP site inside the header. I would also like to know how you can change the color of the title lettering. It is white right now but would like it to be black.
        There are several thousand of WP themes out there and all coded differently. Why do you think anybody is able to guess what's on your site?
        Signature

        {{ DiscussionBoard.errors[3518457].message }}
        • Profile picture of the author intmark5
          I'm thinking that the title in the header may have a middle alignment tactic to center the title inside the header. Don't really think anyone is going to know what my site looks like. Thought it would be a tactic not a code. Sorry. Dot I will check out your recommended plugin thank you!
          {{ DiscussionBoard.errors[3532468].message }}
  • Profile picture of the author AnthonyKrese
    Put a link to your site...so we can help you.
    Signature
    What's for dinner tonight? Fast, easy, awesome recipes to keep the wife and kids happy!

    The Man's Cookbook
    {{ DiscussionBoard.errors[3516834].message }}
  • Profile picture of the author dotlinkmedia
    if you use wordpress seo plugins I recommend to use platinum, so are free to change it easily.
    {{ DiscussionBoard.errors[3525584].message }}
  • Profile picture of the author kjhosein
    Hi @intmark - you'll need to modify your theme's CSS (which you can do by going into your WordPress admin -> Theme Editor). Chances are your header is an h1 html tag and for example, you can center it and make it black like this (in your CSS file):

    Code:
    h1 {
      text-align: center;
      color: #000;
    }
    BTW, you don't need a plugin in order to center your text or change other cosmetics - that's primarily CSS, especially if you don't want to modify the HTML and/or PHP in your theme.

    HTH!
    Signature
    <!--PM me for a quicker reply. Thx!-->
    {{ DiscussionBoard.errors[3533230].message }}
  • Profile picture of the author ptpasta
    If not, you could edit "header.php" by hand. Look for <title> <php bloginfo(name)</title> or similar, and add an "align center" class.
    It would be something like <title class="aligncenter">title</title> or <title align="center">title</title>
    {{ DiscussionBoard.errors[3533237].message }}
  • Profile picture of the author maximax285
    Its the great way to handle the title ...Thanx for sharing the great information....
    {{ DiscussionBoard.errors[3533508].message }}

Trending Topics