horizontal centering divs in a div 100% (wordpress)

I’m trying to center horizontally a divs in a div with 100% width. The div conteiner is “#post-area” and all divs inside, have a class “.post”.

this is the link: http://bit.ly/VOqkhv

Read More

When resize the browser is possible to see that not work good, in fact, all divs are not centering with the menu. How can fid this? I tried also with margin: auto; but nothing .

Thank you so much in advance.

Related posts

Leave a Reply

2 comments

  1. That is because they are floating to the left. You can use inline-block instead.

    Add text-align: center; to #post-area

    Remove float: left; and add display: inline-block; vertical-align: top; text-align:left; to .type-post