我想问一下 - 是否可以将我的自定义CSS应用到LikeBox代码中?我希望它出现在www.autentika.pl上。无论是IFrame,XFBML还是HTML,这都无关紧要吗?谢谢。
答案 0 :(得分:1)
看看这个网站:multipla.tv 这也是在这里完成的。 您应该在框中添加旧版本的粉丝:
<fb:fan profile_id="106908749418612" stream="" connections="14" width="696" height="113" css="http://multipla.tv/css/facebook.css?3159"></fb:fan>
到您的网站并包含js文件:
http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/pl_PL
在生成fb likebox之后,在结束html标签插入代码之前:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-27010550-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
请记住为您更改setAccount。 还有一个想法。 在头部你应该插入:
<script type="text/javascript">FB.init("j4eb6a5dd7554377955544101");</script>
init的参数是你的id。当您搜索普通fb likebox的iframe中包含的javascript时,您可以找到它。
答案 1 :(得分:0)