Struggling to create a simple 4 block layout in the center of the page. Currently, I am using the following CSS on the parent div (class=wrapper)
.wrapper
{
margin:0 auto;
width:960px;
}
However, this centers all child divs but I am unable to position them as desired, for example with left:36px and top: 120px.
Any suggestions on how I can absolutely position child divs in relation to the central positioning of the .wrapper div?
Thanks.
Matthew