Hello,
I followed the instructions from another post(http://wpquestions.com/question/showChrono/id/9749) to create two separate comment threads on a single post.
Here is my problem: In the current theme (wpthoughts) I can't get the comment boxes to appear flush with one another horizontally.
If you visit realclearvote.com, I would like the left comment box and the right comment box to be at th exact same "longitude" on the screen.
Thanks.
Romel Apuya answers:
you only need this css
.post-entry-text.clearfix{
posiiton:relative;
}
.ss,.ssxx{
min-height:950px;
}
.ss #respond, .ssxx #respond{
position:absolute;
bottom:100px
}
Rowela Alzona answers:
This is what you only need..
<style>
.ss, .ssxx{
float: left;
position:relative;
width: 50%;
}
</style>