Merging navbar with the content (Overlay or hide navbar but leave back button)

Hey everyone I am struggling with the following:
I want to merge header with the content and also leave the backbutton:

image
image

Thank you very much in advance :wink:

Or maybe there is a way when you completely remove the header with nav bar and title and add only the backButton to the content?

You could do something like this…

<ion-header class="opaque">
  <ion-navbar dark>
  </ion-navbar>
</ion-header>
.opaque .toolbar-background {
  background: transparent;
}

ion-content {
   background: url(......);
}
1 Like

I see this is a little hack :wink: thank you. But there is no option to manually add the back button wherever wanted?