@JEricaM wrote:
Hi. In my project I have different pages and all of them have a common footer defined in page app.html. The problem is that the footer overlap che content at the bottom of all my pages.
I’ve seen a lot of questions about this problem, but I could not find any solution that worked for me.
This is the code of app.html page:
<ion-menu [content]="content"> <ion-header> <ion-toolbar> <ion-title>Menu</ion-title> </ion-toolbar> </ion-header> <ion-content> <ion-list> <button menuClose ion-item *ngFor="let p of pages" (click)="openPage(p)"> {{p.title}} </button> <button menuClose ion-item (click)="presentConfirm()"> Log out </button> </ion-list> </ion-content> </ion-menu> <ion-footer> <ion-toolbar> Footer </ion-toolbar> </ion-footer>This an example of a standard page:
<ion-header> <ion-navbar> <ion-title>Welcome to Cesena Esplora!</ion-title> </ion-navbar> </ion-header> <ion-content padding class="card-background-page"> <!--Contiene l'immagine --> <ion-card> <img src="assets/img/cesena.jpg"/> <div class="card-title">CesenaEsplora</div> <div class="card-subtitle">Un nuovo modo di visitare la città</div> </ion-card> <p class="button-login-reg"> <button ion-button (click)=openLoginPage()>Login</button> </p> <p> <button ion-button (click)=openRegisterPage() >Register</button> </p> </ion-content>Thank you in advance.
Posts: 1
Participants: 1






