align center my site title

  • Unknown's avatar

    hello to all
    is there any code fo css to align to center the title of my site? i used some codes but the title “alba” never align to center.

    thanks in advance

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Here’s how I would center your title:

    .site-title,
    .site-description {
      float:none;
      margin:0 auto;
      text-align:center;
      padding-top:0;
      min-height:0;
    }
    
    .site-header hgroup {
      width:100%;
      max-width:100%;
      padding-bottom:20px;
    }

    It should work responsively too (for tablets and mobiles and other devices). Let me know what you think!

  • The topic ‘align center my site title’ is closed to new replies.