facebook - Dividing Wordpress comments into 2 columns -


i using wordpress comment system , divide comments 2 columns. recent comments need @ top too, similar how facebook pages work.

the content on pages of site comments - exception of 'about us' page entire content area comments.

for information using photoria theme 2 column theme second column taken sidebar - don't know whether effects or not! hope asking clear!

i'm relatively new website design speak me such :)

thanks in advance, paul

multiple column layouts can tricky while keeping content order accurate — i.e., keeping recent comments @ top of each columns.

edit
assuming markup has same classes theme demo, try adding css:

#commentspost {      overflow: hidden; /* clears floats */  }  .comment.odd {     float: left;     width: 45%; }  .comment.even {     float: right;     width: 45%; } 

this leave gaps due comments being longer others. if that's issue fot use jquery masonry plugin take care of additional white space appears between floated items.


Comments