If you use the Phoca Gallery with your Joomla site you will more than likely need to change the color of your Facebook comments.
Here’s how to do it:
- Log into your FTP and browse to the Joomla install directory
- Then go to “your_joomla_root_folder”/modules/mod_phoca_facebook_comments
- Open the folder named tmpl
- Open default.php for editing
Look for the line like this one
echo ‘<div><fb:comments href=”‘. $tmpl['uri'] .’” simple=”1″ ‘. $cCount.’ width=”‘. (int)$tmpl['fb_comment_width'] .’”></fb:comments>’
And change it to this:
echo ‘<div><fb:comments ‘ colorscheme=”dark” href=”‘. $tmpl['uri'] .’” simple=”1″ ‘. $cCount.’ width=”‘. (int)$tmpl['fb_comment_width'] .’”></fb:comments>’
Note the addition of code colorscheme=”dark”.
Popularity: 14% [?]

