2017-01-16 4 views

Antwort

10
<ion-header> 

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

</ion-header> 

Headers in Ionic haben eine Höhe von 44px. Sie müssen also sicherstellen, dass das Logo weniger groß ist.

.title-image { 
    margin-top: 8px; 
    height: 27px; 
} 
0

einfach wie diese. Verwendung:

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

und:

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