Hello, I was trying to customize a ion-nav-bar, so far unsuccessfully. I’ve tried to apply css to the ion-nav-bar, however in this case putting a height and a border creates this effect where the bar doesn’t seems to contain its elements.
Html:
<ion-view title="<span class='arch'>BLA</span><span class='app'>BLA</span>">
css:
.bar.bar-stable .title{
width: 100%;
height: 110px;
border: 5px solid red;
}
And the result:
Can you help me understand the basics? Is there any way to transclude element in ionic nav bar beside in the title? Is it possible to extend the navbar directive maybe? I’m new to ionic but have a basic knowledge of angular.
Thanks!