Is there any way to create a fixed header and footer in Webworks for Blackberry Phones 6.0+?

I tried using iScroll - works fine on Tablet OS but not on BlackBerries, it works fine in the browser but stops workings when "compiled".

It seems anything with position: absolute; will shrink the entire page down.

Header <- absolute
Content <- normal
Footer <- absolute

For some reason the entire page shrinks down to 40ish pixels (the height of the header)

both html and body have height at 100% and content div is outside the header:

<div id="header"></div>
<div id="content"></div>
<div id="footer"></div>

Help would be much appreciated!

link|improve this question

tried jquery mobile one? – wizztjh Feb 6 at 8:22
I could but JQuery Mobile seems to be a lot of code for no reason - using Zepto at the moment. – Omar Mir Feb 6 at 13:38
Zepto got any fixed header solution? – wizztjh Feb 7 at 3:24
Nop - unfortunately not. – Omar Mir Feb 7 at 14:41
feedback

1 Answer

up vote 1 down vote accepted

In BB 6 browser fixing header and footer with absolute/fixed position is buggy. When you scroll positioned elements move along with page. When you stop scrolling it back to top / bottom as per the position. I would suggest using javascript to find the height of the device & fix them.

 #header{
  height:50px;
}

#footer{
  height:50px;
}

JS

    function setHeight(){
    width = screen.availWidth;
    height = screen.availHeight;
    $('#content').height(height-100);   
}
link|improve this answer
it doesn't work for me. I tested on bb simulator OS6 and OS5, when I scroll up or down the content inside the "#content" doesn't move. – dtrejogo May 2 at 1:12
Try #content{overflow-y: scroll; -webkit-overflow-scrolling: touch;} – Praveen Vijayan May 2 at 17:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.