ckrack / fbootstrapp

HTML, CSS, and JS toolkit for facebook apps
http://ckrack.github.com/fbootstrapp/
Apache License 2.0
1.61k stars 173 forks source link

No scrolling #15

Open elaur opened 12 years ago

elaur commented 12 years ago

Hi,

I have a issue with scrolling, not work.

I use just css. i pus css in file.

i added into my page.

<div class="container">
<div class="content">

// rest of code

</div>
</div>
</body>

and scrolling not wok :|

what i can do ?

MilanJa commented 12 years ago

add this to your css:

body {
  overflow: visible;
}
jimrubenstein commented 12 years ago

@Hosselaer is that really the preferred way to enable scrolling? It seems that scrolling should work out of the box, to me...is there a reason it's not?

MilanJa commented 12 years ago

I don't know why overflow is hidden by default, you could ask @ckrack but looking at the activity on this repo you're not likely going to see much updates. I just ran into the same issue as melaur and decided to post a fix for the common good.

lienista commented 11 years ago

You can check whether your html or body has height:100% and remove this. I just spent an hour on this and scratching my head over this. [My css works fine on the standard bootstrap but not this fb version, so there's something definitely different for this version.]