For anyone interested with the above I also figured out how to highlight the top post...
Here's what it looks like:
http://nikonites.com/feedback-sugges...teractive.html
Assuming you're using postbit_legacy:
Edit template postbit.css:
After
PHP Code:
.postbitlegacy .postbody, .eventbit .eventdetails .eventbody {
margin-{vb:stylevar left}: {vb:stylevar postbitlegacy_userinfo_width};
border-{vb:stylevar left}: {vb:stylevar postbit_userinfo_border};
background: {vb:stylevar postbit_background};
_background-image: none;
padding-bottom: 1em;
}
Add
PHP Code:
.postbitlegacy .postbody.toppost {
background: #F0FFF0;
}
In postbit_legacy
After
HTML Code:
<div class="postbody
Add
HTML Code:
<vb:if condition="$post['threadid'] AND $toppost == $post['postid']">toppost</vb:if>
So the line will look like this:
HTML Code:
<div class="postbody <vb:if condition="$post['threadid'] AND $toppost == $post['postid']">toppost</vb:if>">
The
above must be done for this to work.