I was testing my mobile application, with Windows mobile.I got some issues with the footer part.The problem is regarding footer fixing. When I scroll the contents, the footer also getting up.But the footer is fixed in all browsers including IE and in all mobiles
except windows version.
nidheesh_ep
0 Points
3 Posts
Footer is not fixing in Windows mobile
Jun 26, 2012 04:12 AM|LINK
I was testing my mobile application, with Windows mobile.I got some issues with the footer part.The problem is regarding footer fixing. When I scroll the contents, the footer also getting up.But the footer is fixed in all browsers including IE and in all mobiles except windows version.
See the code, for IE I gave,
roopeshreddy
All-Star
20155 Points
3328 Posts
Re: Footer is not fixing in Windows mobile
Jun 26, 2012 07:01 AM|LINK
Hi,
Are you using Windows Mobile 5.0/6.0/6.5?
If yes, then CSS Expressions may not work in the IE browser provided in it!
You can try the CSS trick which is for IE6 - http://css-tricks.com/snippets/css/fixed-positioning-in-ie-6/
Hope it helps u...
Roopesh Reddy C
Roopesh's Space
nidheesh_ep
0 Points
3 Posts
Re: Footer is not fixing in Windows mobile
Jun 26, 2012 11:29 AM|LINK
I tried with your link.. but it is again not working. Any javascript solution for this to define the 'top' value?
thanks a lot!
roopeshreddy
All-Star
20155 Points
3328 Posts
Re: Footer is not fixing in Windows mobile
Jun 26, 2012 02:58 PM|LINK
Hi,
You did provide the information for - Are you using Windows Mobile 5.0/ 6.0 / 6.5?
If yes, then CSS Expression may not work!
Hope it helps u...
Roopesh Reddy C
Roopesh's Space
A1ien51
All-Star
29935 Points
5821 Posts
Re: Footer is not fixing in Windows mobile
Jun 26, 2012 05:02 PM|LINK
CSS expression support was dropped in IE8+ because of bad performance.
Use CSS bottom:0; https://developer.mozilla.org/en/CSS/bottom
Eric
nidheesh_ep
0 Points
3 Posts
Re: Footer is not fixing in Windows mobile
Jun 27, 2012 10:04 AM|LINK
Yes I 'm using Windows Mobile 6.5.
Thanks