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.

This is my fiddle: http://jsfiddle.net/7UwD2/

I've tried everything I found on the internet - setting:

margin: 0px auto; with width, but it doesn't work.

Only if I'll add an attribute: text-align: center; to the head-title class it does center - but only the text, image is still on the left position.

Where is my problem?

share|improve this question

1 Answer

up vote 2 down vote accepted
  • Remove the float from the image,
  • use text-align: center on the outer DIV,
  • use a SPAN instead of the inner DIV,
  • apply vertical-align: middle to the image and SPAN

HTML:

<div class="head-title">
    <img class="list-icon" src="...">
    <span>Menu</span>
</div>

CSS:

.head-title {
    width: 150px;
    height: 26px;
    padding: 5px;        
    text-align: center;
}

.head-title > * {
    vertical-align: middle;
}

.list-icon {
    width: 24px;
    height: 24px;
}

Live demo: http://jsfiddle.net/7UwD2/6/

share|improve this answer
Nice skill mate! Works like a charm. :) Thank you. – Cyclone Feb 11 '12 at 23:10

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.