I have a project where I’ve had to build a web app targeted at Blackberry devices (Specifically the 8520)
The problem is that it seems like the 8520 has some kind of loading bar that appears at the bottom of the page, but doesn’t go away after everything has loaded.
Is this a CSS thing or not? I can’t figure it out.
For the CSS, I have the following related to the layout:
html,body {
height:100%;
background-color:#000;
color:#fff;
}
body {
font-family:'BBAlpha sans', Arial, Helvetica;
font-size:100%;
overflow:hidden;
text-transform:uppercase;
}
#container {
width:311px;
height:218px;
overflow:hidden;
position:relative;
margin:0 auto;
}

I’m thinking it could possibly be caused by using 100% as the dimension, so when it’s done what you see what 100% was while the loading bar was shown. For example, when the loading bar is showing, only 200 pixels might be available as the height, and then once it’s gone the screen will have 220. The app might not be refreshing its height after the loading bar is gone.