Ionic v2 how to insert a logo in the title

How to insert logo in title on ionic v2?

<ion-header>

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

</ion-header>
+4
source share
2 answers
    <ion-header>

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

</ion-header>

Headers in ionics have a height of 44 pixels. Thus, you must make sure that the logo is smaller.

.title-image {
    margin-top: 8px;
    height: 27px;
}
+11
source

simply. Application:

<img alt="logo" height="40"   src="img/logo.png" > 

and

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

Source: https://habr.com/ru/post/1666898/


All Articles