This Forum has been archived there is no more new posts or threads ... use this link to report any abusive content
==> Report abusive content in this page <==
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to get rid of scrollbars on Facebook iframe page?
12-06-2012, 02:29 PM
Post: #1
How to get rid of scrollbars on Facebook iframe page?
I am trying to implement a custom iframe page on our facebook fan page...It keeps coming up with scrollbars even though I am 100% sure the image width if 520px.

I have tried to the various solutions online but Facebook has apparently changed its app settings in the last month or so.

Anyone have any simple instructions for a person who is not great with html?

Ads

Find all posts by this user
Quote this message in a reply
12-06-2012, 02:37 PM
Post: #2
 
**Assuming you are creating a "custom app" through Facebook Developer and not some third party app to create the fan page tab.

You can fix this problem by implementing some CSS. CSS is web standard scripting that allows you to add style rules to your websites.

Adding the following code within the [head] tags of your website will disable horizontal scrolling:

<style type="text/css">
body {
overflow-x: hidden;
}
</style>

Ads

Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)