Hi, the actual css for .content class in [_scaffolding.scss#L58](https://github.com/driftyco/ionic/blob/082027722255e50dab682064096f9a4c2226428d/scss/_scaffolding.scss#L58) is: ``` .content { position: absolute; width: 100%; height: 100%; } ``` Its height should be the window one less the header one, so: ``` .content { position: absolute; width: 100%; top: 0; /* to prevent errors when has-header isn't set */ bottom: 0; } ``` Thanks :)