09-29-2009 12:29 PM
What is up with the white bar at the bottom of every BB Simulator's browser? It almost seems like the Browser is reserving space for a horizontal scroll bar. This bar appears on all Simulators I have tried and all all web pages developed. It steals valuable screen real estate and is ugly as sin when you use background colors or images on your page.
Any ideas on how to get rid of it?
01-12-2010 06:00 PM
Same problem!
Tried <meta name = "viewport" content="height=device-height" /> and no luck.. does anyone know how to fix this??
01-12-2010 09:42 PM
Can you post the OS version number of the Simulator where you are finding this issue?
01-12-2010 11:46 PM
I'm still having this issue - 9550 5.0.0.334 ; Help about says "BB Smartphone Simulator 2.13.0.65" when you scroll down or up there are chunks of white like shown above.
01-14-2010 10:53 AM
It does that to both simulators
BB 9500 Simulator 2.13.0.54
&
BB 9550 Simulator 2.13.0.65
02-09-2010 05:34 PM
Sill having the same issue ![]()
some help please,
do you set a background color in the config.xml file?
02-09-2010 05:38 PM
If you are seeing white space at the bottom of the screen on a BlackBerry widget it is because of the following...
The rendering of the content will size itself to the size of the body of the document. You can use CSS to ensure that the body of your content fills the entire screen.
An alternative approach is to set the background color of the widget in the config.xml file to fill this space with a solid color.
02-09-2010 09:31 PM
This has worked for me so far...
document.getElementById("mainBody").style.height = screen.height - 12 + "px";
Where "mainBody" is the ID of the body element of my widget.