Don't know why this isn't working but:
I have two boxes, each in their own container, then those two containers are in one big container. Instead of the two boxes beside eachother, one is underneath the other. +rep
Code:main_container {
width: 900px;
margin: 0px auto;
}
.main_container .rightnow_container {
width: 529px;
float: left;
margin-top: 39px;
}
.main_container .rightnow_container .top {
background-image: url(http://x.com/youwhat/images/boxes/right_now/header.png);
width: 529px;
height: 37px;
}
.main_container .rightnow_container .middle {
width: 527px;
background-color: #FFFFFF;
border-left: 1px solid #d9d9d9;
border-right: 1px solid #d9d9d9;
border-bottom: 1px solid #d9d9d9;
}
.main_container .yourname_container {
width: 217px;
float: right;
}
.main_container .yourname_container .top {
background-image: url(http://x.com/youwhat/images/boxes/yourname/header.png);
width: 217px;
height: 37px;
}
.main_container .yourname_container .middle {
width: 215px;
background-color: #FFFFFF;
border-left: 1px solid #d9d9d9;
border-right: 1px solid #d9d9d9;
border-bottom: 1px solid #d9d9d9;
}

