// $Id: README.txt,v 1.1 2008/11/30 03:10:54 taslett Exp $

Installation
--------------
1. Put the bestreply directory in your site modules directory.  
   See http://drupal.org/node/70151 for tips on where to install contributed modules.
2. Enable bestreply via admin/build/modules.
3. Add some styles to your style.css to theme the best reply differently from other comments.
   See Themeing below.
	
Settings
--------------
admin/settings/bestreply
Check the node types you want to be able to mark a comment as the best reply.


Access Control  
---------------
view bestreply: User can see link to view the best reply.
mark bestreply: User can mark best reply if they are the node author.
moderate bestreply: User can mark, change and clear best reply at any time.
administer bestreply: User can change settings.

Theming
------------
Modify comment.tpl.php add:
<?php if ($comment->bestreply) print 'id="bestreply"'; ?> 

eg. <div <?php if ($comment->bestreply) print 'id="bestreply"'; ?>  class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
 
Now the best reply comment will be marked with an id of bestreply.
You can style that by adding to your style.css something along the lines of:
#bestreply { background:skyblue;} 
or 
#bestreply { background: url(medal.gif) top right no-repeat;}

