2011-10-18, 07:13:47
szili Wrote:Hello!
How can I change the color of comments on facebook?
facebook has recently added a colorscheme="dark" parameter that can be added to the code... I'll include that in the next release. Other than that you can not arbitrarily change the facebook comment colours.
To do this manually, change line 146 from this:
Code:
$new_content .= '<fb:comments href="' . $PageURL . '" num_posts="" width=""></fb:comments>';
to this:
Code:
$new_content .= '<fb:comments colorscheme="dark" href="' . $PageURL . '" num_posts="" width=""></fb:comments>';
(You could probably do it by javascript changing styles of things after the page is loaded, but that is beyond simple)
-Rob A>