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 have a Faceboon Fan api on my site, i want to style it my self, but i dosen't seem to work. I do set the CSS to the css file on the ftp, but it's like the fan box done take useage of it.

Anyone knows what the problem is ?

Fan Box:

<script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US"></script>
<script type="text/javascript">FB.init("");</script>
<fb:fan profile_id="145883417064" stream="0" connections="14" width="500px" height="600px" header="0" logobar="0" css="css=MY_URL/Facebook_CSS/fb_css.css">
</fb:fan>

CSS:

...
.fan_box .full_widget .connect_top {
    background:green !important; <--Green for testing
    padding:0 0 10px 0 !important;
}
...

This is what css i get, when i refresh the page:

.fan_box .full_widget .connect_top {
    background: none repeat scroll 0 0 #ECEFF5;
}

And its coming from this css file: ZZOSKCuiTWq.css (linje 7) and i have no idea where its coming from ??

Thanks in advance!

share|improve this question

1 Answer

up vote 1 down vote accepted

Facebook caches the css each time, append a different query string to the url of the css each time you make a change and it will pick it up. Here's a guide that helped me do the same http://www.daddydesign.com/wordpress/how-to-customize-your-facebook-fan-box/

share|improve this answer
How in hell did i miss that part O.o – Patrick R Apr 11 '12 at 9:14

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.