Hello Team,
I am unable to center the header text titles on my pages.
In web view its centered in Android it comes to left.
<ion-view title="Home" id="page1" style="background-color:#2C9AE2;">
<ion-content padding="true" class="has-header">
I have tried align-title=“center” on ion-view-title but it does not work…
kocei
June 29, 2017, 10:13am
2
<ion-nav-bar class="bar-positive" align-title="center">
doesn’t work ?
if not, try :
ionicApp.config(function($stateProvider, $urlRouterProvider, $ionicConfigProvider) {
$ionicConfigProvider.navBar.alignTitle('center')
});
There is no nav-bar in the page:
For eg: Blank page
<ion-view title="Settings" id="page10" style="background-color:#2C9AE2;">
<ion-content padding="true" class="has-header"></ion-content>
</ion-view>
so how can I make sure that Settings title come @ center in android
kocei
June 29, 2017, 12:02pm
4
.page10{
text-align:center;
}
@kocei
Thank you but after adding css style to ionic.css it does not work
kocei
June 29, 2017, 12:15pm
6
Can you show me your whole template ?
@kocei
Here is the template:
<ion-view title="Settings" id="page10" style="background-color:#2C9AE2;">
<ion-content padding="true" class="has-header"></ion-content>
</ion-view>
This is what I get when I create a blank page and I have many blank pages like this one.
In web view the title of the page is centered but in android it comes to left
for sidemenu I was able to do add
<ion-header-bar align-title="center" class="bar-stable">
add it worked but its not working for the pages titles…