Keep in mind that you can't reorder the Home tab. No Charge. .. otherwise the resize wont work. I have developed an application and added the tab of the application in a profile page, application tab is opened in an iframe according to the update "iframe Tabs for Pages". you saved my time . Whether its to pass that big test, qualify for that big promotion or even master that cooking technique; people who rely on dummies, rely on it to learn the critical skills and relevant information necessary for success. Jump toSections of this pageAccessibility HelpPress alt + / to open this menuRemoveTo help personalize content, tailor and measure ads, and provide a safer experience, we use cookies. All rights reserved. First Name Email Address We use this field to detect spam bots. Stack Overflow works best with JavaScript enabled .. If you fill this in, you will be marked as a spammer. shareimprove this answer edited Jul 11 '13 at 18:17 sakibmoon 1,65831529 answered Mar 2 '11 at 1:32 Landitus 97541827 1 Simple and effective. When you reorder the tabs on the left side of your Page, the sections in the middle of your Page will also change to be in the same order. Taken from this page: Before : window.fbAsyncInit = function() { FB.Canvas.setSize({ height: 'HEIGHT YOU WANT', width: 'WIDTH YOU WANT' }); } // Do things that will sometimes call sizeChangeCallback() function sizeChangeCallback() { FB.Canvas.setSize({ height: 'HEIGHT YOU WANT', width: 'WIDTH YOU WANT' }); } Then before : FB.init({ appId: 'XXXXXXXXXXX', //Your facebook APP here status: true, // check login status cookie: true, // enable cookies to allow the server to access the session xfbml: true// parse XFBML }); shareimprove this answer edited Jul 11 '13 at 18:20 sakibmoon 1,65831529 answered Jan 29 '13 at 14:52 David Parker 7482614 add a comment Your Answer draft saved draft discarded Sign up or log in Sign up using Google Sign up using Facebook Sign up using Email and Password Post as a guest Name Email Post as a guest Name Email discard By posting your answer, you agree to the privacy policy and terms of service. rev2018.1.9.28319 . The problem is that height of the page is not adjusted and unable to remove the scrollbars to display the fully page without scrollbars. Stack Overflow Questions Developer Jobs Tags Users current community help chat Stack Overflow Meta Stack Overflow your communities Sign up or log in to customize your list. Unsubscribe Anytime. About For Dummies Subscribe or Unsubscribe My Account Store Shopping Cart Help For Dummies B2B Solutions Online Courses Privacy Policy Terms and Conditions Advertise with Us Contact Us Dummies has always stood for taking on complex concepts and making them easy to understand. –user1839147 Nov 20 '12 at 14:44 Thanks for posting this! –Rob Dyson Jan 7 '13 at 6:07 works . shareimprove this answer answered May 20 '11 at 12:43 Frank 211 add a comment up vote 0 down vote For anyone like me who tried all of the above to no avail, here's what finally worked for me. After I changed the jquery library 1.6 to the 1.5.1 it worked. .. asked 6 years, 11 months ago viewed 38,486 times active 4 years, 6 months ago Blog Take the 2018 Developer Survey Linked 1 Define custom height for tab of Facebook application with iFrame Related 0Timeframe for Iframe support on Facebook fan pages12Facebook Canvas APP (Iframed) Auto-Height Resize57How does Facebook set cross-domain cookies for iFrames on canvas pages?3Facebook: new IFrame canvas for page tabs width is lower than 520px?0Resize iFrame in facebook fan page0Is it possible to add an iFrame tab to an existing Facebook page?1How to add an iFrame page Tab application to an Application profile page?0Iframe width does n't auto expand in new Facebook timeline view2Facebook Page Publish link to page tab (iframe)0unable to fix the height of the tab page in facebook Hot Network Questions Does the interior surface of a Dyson Sphere exert gravity? How do I get other players to ask about my backstory? Only Three Books: Restarting Chemistry after civilization collapses The Elder Scrolls: What characters became "Gods"? Does AWS offer a way to route HTTPS traffic to two different EC2 instances based on directory path? Fair treatment for employees always late due to public transport How can I make a beveled edge with bump mapping? Does your ISP know what type of phone/computer you're using? During single-engine taxi, how is the asymetric power compensated for? Dealing with aggressive student suspected to be cheating How do I negotiate more "Man" time for myself without offending my partner? Was Kylo Ren Manipulating Snoke? Why is Windows reporting a battery charge with my desktop? How to partially extract zipped huge plain text file? Using Oracle's Java Documentation as a Teaching Tool Is absolute pitch acquired by training, genetic or both? And if possible, is it much harder than relative pitch? Is there a list of old browsers that only support TLS 1.0? What's up with Archbishop Desmond? What limits the speed of a car? Pairwise Hamming Distance Should I use "a" or "an" when I abbreviate a word? Could you strap shotguns to the back of a centaur to be fired during a charge? Why Google Translate translate back not same as the first time translate? Time Puzzle Rebus more hot questions question feed . Having both is not necessary. Check if that is your problem. How can we do that? facebook facebook-iframe shareimprove this question edited Feb 20 '12 at 11:29 Rory 17.4k47139208 asked Feb 14 '11 at 23:27 Ahmad 101114 add a comment 6 Answers 6 active oldest votes up vote 21 down vote It's quite easy to achieve. Add Tabs and Sections. Toggle navigation Search Submit San Francisco, CA Brr, its cold outside Browse Topics LiveConsumer ElectronicsFood & DrinkGamesHealthPersonal FinanceHome & GardenPetsRelationshipsSportsReligion LearnArt CenterCraftsEducationLanguagesPhotographyTest Prep WorkSocial MediaSoftwareProgrammingWeb Design & DevelopmentBusinessCareersComputers B2B Solutions Shop for Books San Francisco, CA Brr, its cold outside Search Submit . Now, on your server, you have to add the following code before the tag: FB.Canvas.setSize(); This will auto resize it. It also helps if you add overflow:hidden to the BODY tag. Not the answer you're looking for? Browse other questions tagged facebook facebook-iframe or ask your own question. You have to set up the application in the Facebook Integration tab as an IFRAME and the size of the frame as "Auto-resize". –Carson Jul 4 '12 at 13:38 2 This worked a charm. Keep in mind that some tabs and sections can't be removed (such as Home, About, Likes, Posts, Photos and Videos), and others can't be reordered (such as Home). Don't forget to read the documentation: developers.facebook.com/docs/reference/javascript/… –ramayac Nov 23 '11 at 17:25 add a comment up vote 14 down vote The following guide helped me through the same problem: In short, do the following: Change your "IFrame Size" to "Auto-resize" Load Facebook's Javascript SDK add the following code just before the tag of your index page: FB.init({ appId : 'YOUR-APP-ID-HERE', status : true, // check login status cookie : true, // enable cookies to allow the server to access the session xfbml : true // parse XFBML }); Use FB.Canvas.setSize() Put the following code before the tag: window.fbAsyncInit = function() { FB.Canvas.setSize(); } // Do things that will sometimes call sizeChangeCallback() function sizeChangeCallback() { FB.Canvas.setSize(); } That should do it, hope it helps! shareimprove this answer edited Jul 11 '13 at 18:23 sakibmoon 1,65831529 answered Apr 5 '11 at 7:42 disco 1,183820 Thanks disco it helped! –Xenon Sep 13 '11 at 16:56 add a comment up vote 9 down vote facebook recently changed something, now your tab file also needs the fb.init method 5a02188284 facebook like brand guidelinesgovernment using facebook for facial recognitiondownload hack facebook versi 2013download facebook buat e63unicode strikethrough text tool for twitter facebookfacebook jukebox applicationnyan cat en chat de facebookfacebook n8 applicationsmiley for angry on facebookfacebook cheat criminal case
Yevetphyl replied
409 weeks ago