I'm hoping someone could help me with a quick CSS question concerning Comment Threading in 2.7. I'm heavily modifying a theme (http://www.themeforest.net/item/our-community/15953) that recently updated to 2.7 support. Unfortunately, the update didn't quite get it right, and the theme author said she was leaving for a few days for the holidays. I'd really like to get this worked out quicker than that.
Here is a screen shot of what is happening:
http://img220.imageshack.us/img220/7738/multiptagsij3.jpg
The problem occurs because of the way the CSS is setup. The text of the comment is setup via CSS with something similar to this:
[code]
#comment-area ol li p {style.css (line 1001)
background-color:#F3F3F3;
border:1px solid #E0E0E0;
float:left;
min-height:150px;
padding:10px;
width:475px;
[/code]
Obviously, the problem is that the css is setting a style for each paragraph. So anytime a new paragraph begins, boom, new box.
So my question is this, what is the correct way to refer to the text in a comment box? Is there a div tag that refers only to the text? Or some sort of CSS trick to only format the text?
I would appreciate any help...