Can I customize the appearance of the HTML5 Facebook activity plugin with my own CSS?
This is the current code for the plugin:
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=123456789";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-activity" data-width="300" data-height="300" data-header="true" data-recommendations="false"></div>
I want to modify the plugin to display larger images and change the color of the links. Any suggestions on how to achieve this? Thanks. Uli