@xuying wrote:
My app is ionic tab-based, I want to adjust only one tab page's header to cover header, however is being put at index.html as a public page for all tabs, how can I just make change to nav bar just for one tab page?
The code for the tab page I want to make change:
<ion-view view-title="Account"> <ion-content> <div class="list card"> <div class="item item-avatar"> <img src="avatar.jpg"> <h2>Pretty Hate Machine</h2> <p>Nine Inch Nails</p> </div> <div class="item item-image"> <img src="cover.jpg"> </div> <a class="item item-icon-left assertive" href="#"> <i class="icon ion-music-note"></i> Start listening </a> </div> <ion-list> <ion-toggle ng-model="settings.enableFriends"> Enable Friends </ion-toggle> <ion-nav-view></ion-nav-view> </ion-list> </ion-content> </ion-view>
Posts: 1
Participants: 1