So I'm writing a mod, and it has comments in it. I'm trying to get my comment display to show up pretty much exactly like how it shows up within the rest of the forum... Unfortunately, I'm having a bit of trouble with the styles. I've emulated the styles for the comments from the blog section; but I'm not getting the styles to show up. What do I need to do to get the styles for this to work?
Code:
<li class="postbit postbit-lite postcontainer" id="comment_{vb:raw comment.commentID}">
<div class="postbithead">
<a href="{vb:link member, {vb:raw comment.userID}}" class="username">{vb:raw comment.username}</a>
-
<span class="postdate">{vb:raw comment.date} <span class="time">{vb:raw comment.time}</span></span>
</div>
<a href="{vb:link member, {vb:raw comment.userID}}" class="avatarlink"><img src="{vb:raw comment.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw comment.username}}" style="height:auto; width:60px" /></a>
<div class="content">
<div id="comment_text_{vb:raw comment.commentID}">
<blockquote class="posttext restore">
{vb:raw comment.message}
</blockquote>
</div>
</div>
</li>