Need I say- BACKUP before making file modifications and changes.
There are always more than one way of doing things, so if anyone has another way, or a better way of doing this thing- Please Chime In
This is how I replaced the "Plus" and "Minus" Font-Not-So-Awesome Icons (Which really don't suck, I just don't care much for them...I like a little color and life in my site) with Thumbs-Up and Thumbs-Down icons.
I attached some screen-shots as well for ya, and the icons I used for the Thumbs-Up and Thumbs-Down.
NOTE: If you wish to use the Font Awesome "Thumbs-Up" and "Thumbs-Down" icons, then you need only complete STEP-1
STEP-1:
You need to modify the file: /templates/base/scripts/BxBaseCmtsView.php (again- backup first)
In BxBaseCmtsView.php Around line 301 find this line:
<div class="cmt-buttons"><a title="'._t('_Thumb Up').'" href="javascript:void(0)" id="cmt-pos-'.$a['cmt_id'].'" class="cmt-pos"><i class="sys-icon plus-sign"></i></a><a title="'._t('_Thumb Down').'" href="javascript:void(0)" id="cmt-neg-'.$a['cmt_id'].'" class="cmt-neg"><i class="sys-icon minus-sign"></i></a></div>
And replace the plus-sign and minus-sign with thumbs-up and thumbs-down so you code should look like this:
<div class="cmt-buttons"><a title="'._t('_Thumb Up').'" href="javascript:void(0)" id="cmt-pos-'.$a['cmt_id'].'" class="cmt-pos"><i class="sys-icon thumbs-up"></i></a><a title="'._t('_Thumb Down').'" href="javascript:void(0)" id="cmt-neg-'.$a['cmt_id'].'" class="cmt-neg"><i class="sys-icon thumbs-down"></i></a></div>
Save and FTP BxBaseCmtsView.php back up to your site.....and of course- you'll likely need to clear your caches.
Now, you will have little green and red Font Awesome Thumbs-Up and Thumbs-Down icons.....They will turn grey after a member clicks one or the other, giving a positive or negative point to a comment.
Much thanks goes to geek_girl for the remaining steps outlined here- Replace Font-Stinky Icons
STEP-2 :
You need*** to modify the file: /templates/base/css/icon.css (you may also need to do this with your custom template's icon.css if you have a custom template.....***note- making changes to the base CSS files means that these changes will need to be made again after upgrading to newer versions of Dolphin) (again- backup first)
In icon.css Around line 158 find-
.sys-icon.thumbs-up:before { content: "\f087"; }
.sys-icon.thumbs-down:before { content: "\f088"; }
And replace with this-
.sys-icon.thumbs-up:before { content: url(../images/thumbs-up_32.png); }
.sys-icon.thumbs-down:before { content: url(../images/thumbs-down_32.png); }
Then Save and FTP icon.css back up to your site.
You'll also need to upload your Thumbs Up and Thumbs Down images to the appropriate directory....In this case, we will need to upload thumbs-up_32.png and thumbs-down_32.png to the templates/base/images directory.
And of course- you'll likely need to clear your caches.
That should be it!
Again, if I missed something, or if there is a better way to do this, or whatever, please say so :)