I would like to be possible to show a subtitle text below the title with smaller text and a little opaque.
To have a <ion-subtitle> tag.
Which Ionic Version? 2.x
Bump
<ion-view title="<div class='main-title' style='line-height: initial;'>Main Title</div><div class='sub-title' style='line-height: initial;font-size: 12px;color: #333;'>Sub Title</div>"></ion-view>
This worked :)
Hello everyone! Thanks for the feature request. I'm going to move this issue over to our internal list of feature requests for evaluation. We are continually prioritizing all requests that we receive with outstanding issues. We are extremely grateful for your feedback, but it may not always be our next priority. I'll copy the issue back to this repository when we have begun implementation. Thanks!
This issue was moved to driftyco/ionic-feature-requests#25
+1
Is that a private repository @jgw96 ?
This can be archived by wrapping your title into a div (to force into display:block) and adding a second div for the subtitle where you would only need to adjust font-size (and opacity):
<ion-title>
<div>Regular Title</div>
<div style="font-size: 12px">Subtitle</div>
</ion-title>

This snippet work perfectly
<ion-title>
<span>Title</span> <br>
<small>Subtitle</small>
</ion-title>
@rnarian Don't use block tag like div cause you break the ellipsis of the title on small device.
@5im0n Good catch. 馃憤
You can try this as well:
https://forum.ionicframework.com/t/sub-title-in-navbar/70331
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.
Most helpful comment
This snippet work perfectly
@rnarian Don't use block tag like
divcause you break theellipsisof the title on small device.