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 m using FB.ui method in facebook to show stream publish box as follows:

function showfeed()
{
   var publish = {
    method: 'stream.publish',
    attachment: {
        name: 'XYZ',
        caption: 'caption here',
        description: ('description'),
        href: 'url',
        media: [{
            type: 'image',
            href: 'url',
            src: 'xyz.gif'
        }]
    },
    action_links: [{ text: 'XYZ', href: 'url' }]
    };  

   FB.ui(publish,null);
}

This works fine but my page is very long in height so when i click button to show this dialog it appears at center of page not at top so even dialog is display at center it's not display to me as i m at top. Is there any away to position dialog at top so any one can see it.

share|improve this question

2 Answers

up vote 8 down vote accepted

add the code below to <style>. [got that from other forums) hope that helps

div.fb_dialog_advanced+div.fb_dialog_advanced {
top:50px !important;
}
share|improve this answer
hey this works thanks for help – user392406 Feb 25 '11 at 6:59

div.fb_dialog_advanced+div.fb_dialog_advanced { top:50px !important; } code deos not work any more see this!1

But worked around it with jquery. kinda hacky but works.

function move_to_top( value )
{
    $(".fb_dialog").each(function(index) {
        if(j(this).css("top")!='-10000px')
        {
            $(this).css("top", '50px' );
        }
    });
    setTimeout( ('move_to_top("'+value+'");'), 1250);
}

function send_request()
{
    FB.Canvas.scrollTo(0,0);
    FB.ui({method: 'apprequests', message: 'Press accept to see this request.', data: 'tracking information for the user'},
        function(response) {
            if(response!=null)
            {
                alert('You are boss')   
            }
    });
    $(".fbProfileBrowserResult").ready( function(){
        t = setTimeout ( ('move_to_top("'+50+'")'), 1250 );
    }); 
}
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.