Search code examples
iosweb-applicationsstatusbarhtml-framework-7

Change iOS 10 web app status bar


I'm working on a web app for iOS 10 (using Framework 7) and I would like to change the default black color of the status bar.

I tried this:

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

But it's not working... How can I do?

Thank you!


Solution

  • Try this in the CSS

    .statusbar-overlay {
    background: black;
    

    }