I'm creating a web App for mobile devices, but i have an issue with the footer toolbar in iphone, i just want to hide or remove it but i trying without results.

I was reading in apple support for use some metatags like that:

<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />

But the toolbar is always showing up...

Is there any way to hide it and make a "Looks like" native application?

link|improve this question

78% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You have to add your site/web app in device home screen. The metatags provided from Apple works only if you have a link from home screen.

link|improve this answer
feedback

Try

#menu
{
    text-align:center;
    margin-top: 20px;
    height:100px;
    background-color:#000;
    width:100%;
    position:fixed;
    bottom:0;
} 

and then call it in your division ! If it is a web app.

link|improve this answer
Try this Or this – Aeshang Dec 8 '11 at 0:39
position:fixed would not work for Android and iOS < 5 – tungd Dec 8 '11 at 4:09
Thanks for the comments, maybe there is a misunderstanding, i just want to remove the footer toolbar in the mobile client, i mean the defaults browser footer toolbar, not add some new menu o something like that! – Aletz Morgan Dec 8 '11 at 15:59
does this help ? – Aeshang Dec 8 '11 at 16:52
did you check the link ? – Aeshang Dec 10 '11 at 5:04
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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