Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ionic v2 how to insert a logo in header

How can Insert a logo in header on ionic v2?

<ion-header>

  <ion-navbar>
    <ion-title></ion-title>
  </ion-navbar>

</ion-header>
like image 493
raduken Avatar asked Jan 16 '17 10:01

raduken


1 Answers

    <ion-header>

  <ion-navbar>
    <ion-title>
<img alt="logo" height="40"   src="img/logo.png" > 
</ion-title>
  </ion-navbar>

</ion-header>

Headers in Ionic have a height of 44px. So, you need to make sure the logo is sized less than that.

.title-image {
    margin-top: 8px;
    height: 27px;
}
like image 89
Amr.Ayoub Avatar answered Mar 12 '23 13:03

Amr.Ayoub