I'm using the Facebook XML to load a facebook comments plugin in my MVC 3 app, like this:

<fb:comments href="@Request.Url.AbsoluteUri" num_posts="15" width="900"></fb:comments>

The problem is that the width property only renders out in pixel value. I would like to specify a percentage width instead. I examined the HTML generated when facebook's javascript renders out the xml tag to full-qualified HTML. It spits out an iframe with inline css specifying the width. The iframe has a class "fb_ltr" and I tried doing a CSS rule for .fb_ltr to change the width, but because the css is inline as a style="" attribute this rule is overridden.

I then tried using JQuery:

$(function()
{
    $('.fb_ltr').css('width', '100%');
});

But that didn't work either because the facebook javascript takes a while to do it's job and render the content. Has anyone worked with the facebook plugins before? Customizing seems kind of convoluted. Anyone know if there is a way to tie some jquery on after the facebook script renders out the comments iframe?

Any help is appreciated.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

if you can do it via css why not do it? just add !important and it will override everything. But I doubt that you can do it via css. Example css:

width: 100% !important;
link|improve this answer
I will try that. – Alex Ford Mar 14 '11 at 23:09
Thank you. I did not know about !important in CSS. You fixed my issue. I will accept later tonight, it is making me wait... – Alex Ford Mar 14 '11 at 23:14
That's what I used to use. It works fine. – Nicholas Wilson May 8 '11 at 15:13
feedback

try attaching a load event to the facebook frame:

$("#comments").load( function() {
    $('.fb_ltr').css('width', '100%');
});
link|improve this answer
I did not know I could do this either! Thanks :) – Alex Ford Mar 14 '11 at 23:15
feedback

I changed this:

<fb:comments href="http://whatever.com" 
num_posts="10" width="500"></fb:comments>

to this:

<fb:comments href="http://whatever.com" 
num_posts="10" width="100%" style="width:100%"></fb:comments>

and also set the following css:

iframe.fb_ltr { width:100% !important; }

It worked...

link|improve this answer
I tried the width="100%" and that did nothing, same with the style="width: 100%;". It was the css rule .fb_ltr { width: 100% !important; } that did it. the inline attributes and styles on the FBXML element do not get rendered to the containing iFrame when javascript renders the contents. But !important does override the inline style that gets set on the rendered iFrame, hence the answer I accepted 2 days ago. – Alex Ford Mar 17 '11 at 13:55
feedback

Your Answer

 
or
required, but never shown

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