I'm looking to display posts one after the other. Initially, I applied this css code, but all the posts are ending up in the same location. How can I adjust this code to show them sequentially (similar to a Facebook wall)?
.post00{
top:150px;
left:500px;
position:absolute;
width:600px;
height:210px;
background:white;
word-break: break-all; word-wrap: break-word;
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
}
If I eliminate top, left, and absolute properties, the alignment of the posts will be off-center.