After trying different things I go to the last option that is, asking for help, I have 3 problems that I can't solve by myself, I have a webapp designed in the future for phonegap with the following bug:
1) The panels aren't shown correctly, for some reason they are taking the height of the content inconrrectly and a black are is shown behind bug 3. For that I'm using the following "hacks"
.ui-mobile .ui-page {
min-height:100%!important;
/* min. height for modern browser */
height:auto!important;
/* important rule for modern Browser */
height:100%!important;
/* min. height for IE */
left:0;
top:0;
bottom:0
}
I have done a jsfiddle to show it: http://jsfiddle.net/tronne/bLhmdacu/
Could you kindly help me?
Thanks