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 added an iframe like box to a website: www.apf.no

But some of the images go out of proportions, how can I override this code?

.connect_widget .page_stream img {     
   max-width: 120px; 
}

Thanks Caecilia

share|improve this question

2 Answers

I finally got the images back to the correct width using the following code:

<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="ID_OF_PAGE_HERE" stream="1" connections="20" width="600px" height="500px" header="1" logobar="0"  css="WEBSITE_URL_HERE/css/facebook.css?17"></fb:fan>

And the CSS is:

a.largePhoto img.img {
    max-width: 300px !important;
    width: 300px !important;
}

Please remember to add one to the .css?17 each time you update the CSS to prevent the use of a cached version of the CSS.

share|improve this answer

You need to use the older, but still supported fan-box to be able to add your own custom stylesheet, then any styling you like is possible including overriding the "max-width"

See these posts for more details:

http://www.speckygeek.com/how-to-add-facebook-like-box-to-your-website/

http://www.daddydesign.com/wordpress/how-to-customize-your-facebook-fan-box/

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.