Reputation: 13
I can't align center the two block between div class="wrapper-home"
The site is: www.mattialab.it/wp/
I just already try by using in body:
text-align: center
or margin: 0 auto;
without any result.
Can anyone tell me where I'm wrong or what is missing?
Thanks!
Upvotes: 1
Views: 93
Reputation: 4137
Just add a width to your container div so the margin's know where to start and stop the centering.
CSS
.wrapper-header{
margin: 0 auto;
width:900px;
}
Upvotes: 1