I have this code to align the title and image in the ionic header bar:
CSS:
.banner-top {
background-color: #EE7130;
height: 19.6vw;
}
.banner-top h2 {
font-family: "JEMBOhands", sans-serif;
font-size: 9vw;
color: white;
#s_back {
margin-left: 3.4vw;
position: relative;
top: 50%;
transform: translateY(-50%);
}
Markup
<a href="#/list" nav-transition="none"><ion-header-bar class="banner-top" align-title="left">
<h2 id="s_back"><img src="img/back_b.png" id="s_back_img"alt="">STORIES</h2>
</ion-header-bar></a>
It looks soso in the browser:
And like this on the device:
What is my mistake? Here is a ionic play: http://play.ionic.io/app/b3660e2f6a0c
UPDATE: It's working now in ionic play but is still wrong in the iOS simulator.. http://play.ionic.io/app/bb1620290ea4


#s_back_imgasheight: 100%;. - Harish Kommuriheight: 6.7vw;- olivier