I tried to do what the other question said, but i think the problem why is not workign for me is because the divs are floating. this is my html body:
<body>
<div class="container">
<div class="header"></div>
<div class="sidebar1"></div>
<div class="content"></div>
<div class="sidebar2"></div>
<div class="footer"> </div>
<!-- end .container --></div>
</body>
so, what im looking for, is on the "sidebar2" to center teh content of that div. and, all divs are floating, heres the CSS:
.container {
width: 960px;
background: #FFFFFF;
margin: 0 auto;
}
.header {
background: #ADB96E;
}
.sidebar1 {
float: left;
width: 180px;
background: #EADCAE;
padding-bottom: 10px;
}
.content {
padding: 10px 0;
width: 600px;
float: left;
}
.sidebar2 {
float: left;
width: 180px;
background: #EADCAE;
padding: 10px 0;
}
.footer {
padding: 10px 0;
background: #CCC49F;
position: relative;/* this gives IE6 hasLayout to properly clear */
clear: both;
}
so what's happening is that right now, anything i post on the sidebar2 is aliging to the top, and the content of that div looks right below the header and im looking for it to look verticly in the middle. Ive tried vertical align in the css, wraping the sidebar on the body and alignign the child, hasnt worked =[.
Any help?

PHPrelated question as stated from yourTAG, please post any relevant PHP code. – Fred Jun 17 '12 at 16:35backat the bottom for more examples. – Fred Jun 17 '12 at 16:41text-align: center? jsfiddle.net/YhW4F/1 – Zoltan Toth Jun 17 '12 at 16:42