On 5.5, I have this done, but with the changes to V6, this is much harder to do, because the code isn't all in the same place anymore. <br /> <br />I need to know what code to add to postlist.php and showthreaded.php to add a tr class to new posts(class "newthread" in the css)... Right now I edited the code near the "Alternate Colors" to be: <br /> <br />[:"blue"]// -------------------- <br />// alternate the colors <br />if ( ($Posted >= $unread) && (!ereg($thisone,$read ) ) ) { <br />$postrow[$z]['color'] = 'newthread'; <br />} else { <br />$color = $html -> switch_colors($color); <br />}[/] <br /> <br />But this will only update the new post itself. We need to color the original post of the thread if there are any replies to the thread, for collapsed mode. <br /> <br />When viewing in collapsed mode, anytime there is a new post we want the parent post to have the newthread class to that table row. <br /> <br />When viewing in expanded mode, we want just the new posts to have the newthread class to that table row, not also the parent thread. And on showthreaded, same thing. <br /> <br />Basically, anytime the "/newicons/" would be used instead of "/icons/" I need to change that row to be class = "newthread" ... <br /> <br />So, where are they all?
Edited by Muhammad (06/03/02 04:51 PM)
_________________________
Muhammad