Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Button that is a simple anchor tag styled with the following -

.buyBtn{ 
   background:url(../images/buyBtn.png) no-repeat; 
   padding-top:4px; 
   width:97px;     
   height:28px; 
   margin-top:14px;
}
.buyBtn a{
   color:#fff!important; 
   font-weight:normal!important; 
   text-decoration:none;
   padding-left:27px;  
   padding-top:12px; 
   text-shadow:none!important;
}

I'm having problems vertically centering the text within the button, it appears fine in some devices, but off centre in others.

Can anybody recommend a way to fix this or a better solution to achieve the same result?

Cheers

share|improve this question
your title says horizontal, the question says vertical ;-) which'll it be, good sir? – WickyNilliams Nov 24 '11 at 14:29
sorry - having a mad day! The title should say vertically! I'll alter – Paul Nov 24 '11 at 14:31

5 Answers

up vote 3 down vote accepted

HTML:

<div class="buyBtn"><a href="#">Button</a></div>

CSS:

.buyBtn{ 
    background:url(../images/buyBtn.png) no-repeat; 
    width:97px;     
    height:28px; 
    display: table-cell;
    vertical-align: middle;
}

.buyBtn a{
    color:#fff!important; 
    font-weight:normal!important; 
    text-decoration:none;
    padding-left:27px;
    text-shadow:none!important;
}

No need to use padding-top or margin-top for vertical align. Just use display: table-cell; and vertical-align: middle;. Thats it.

share|improve this answer
cheers for your help man - works great – Paul Nov 24 '11 at 14:45
you are most welcome.. – Arif Nov 24 '11 at 14:47
you can't add margin to position a table-cell element so this application of this technique is limited if you need to position the .buyBtn using margin. – eagspoo Nov 1 '12 at 9:15

Use line-height to center it vertically. I usually use the same value as its height.

share|improve this answer

Did you try setting a font-size to your link ? Each browser probably has its own default size, so that may be an hint. Be careful too with padding and width/height, you need to decrease the block size if you add padding 'cause the padding is included in the width. For example, a simple block of 100px width without padding will have a size of 100px : ok. Add a padding-left: 10px; and your block now has a width of 110px. ;)

share|improve this answer

I would use line-height as bchhun as mentioned. Also, padding-top & padding-bottom can help.

share|improve this answer

Your code should work fine if you append this to your styles.

.buyBtn a {
  display: block;
}

By default <a> is an inline element and hence padding might not be working the way you want it to.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.