Ionic full screen background image

css, ionic-framework

Solution

In your css, try:

  .scroll-content {
    background: url(image) [add image position info here];

    [add any more properties here]

  }

This will set the background for the full content area.

Problem

I am new to the Ionic framework and I am trying to start the app with a full screen background image like this: I did manage to remove the statusbar it was shown in the tutorial. But how do I add a full screen image? When I added this to the style.css it didn't react: ``` html, body{ background-image: black; } ```

Original source