Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the facebook comment plugin on my site.

<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:comments  style="background-color:#131514;" href="http://kablammo.com.au/news_article.php?&amp;newsID='.$i.'" num_posts="3"  width="500"  ></fb:comments>

I saw in a post that you could effect the backgound colour by putting in:

style="background-color:#131514;"

However to get it to work you have to remove the colourscheme colorscheme="dark" and in doing so the comment text returns to black.

How can I change the comment text colour?

I tried putting in color:#FFF but no such luck.

Thanks Guys.

share|improve this question

1 Answer

up vote 0 down vote accepted

You need to create an external stylesheet and reference that in your <fb:comments> call.

Eg: <fb:comments numposts="4" title="My Blog Comments" css="http://www.yourwebsite.com/css/comments.css?1234" simple="1"></fb:comments>

Please read the following for reference:

Always search for answers before asking. A simple search for "facebook comment plugin custom css" yields numerous tutorials and forum posts that answer your question. :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.