Horizontally align title on Navbar on Android

Hi all!

Lately i’ve been struggling to fix a small problem with the title in my navbar. Basically, the title in my navar are slightly misplaced on the right and not centered, this happens only on Android.

Also this happens only when a sidemenu button is present, otherwise the title is centered correctly.

Here’s the code:

<ion-header>
    <ion-navbar>
        <button ion-button menuToggle left >
            <ion-icon name="menu"></ion-icon>
        </button>
        <ion-title text-center>{{ titolo }}</ion-title>
    </ion-navbar>
</ion-header>

Here’s a screenshot of the problem:
Capture

Have you used Chrome’s dev tools to inspect the DOM and CSS to see what is introducing this?

You might have some custom CSS in your design that is being applied to the title.

The main reason is that i have the toggleMenu button on the left side of the navbar. I thought Ionic fixed this automatically when using the “text-center” property in the view. (iOS does indeed).

test2

Before trying to fix the problem with weird workarounds i’d like to know what’s the proper way to deal with this or if this is simply a bug.

How does it look when you preview all three supported Mobile platforms side by side:

ionic serve --lab

For example:

See: https://github.com/Robinyo/big-top/blob/master/src/pages/events/events.html

It looks okay on ios but slightly offset to the right on android

Try it without the text-center attribute.

I already tried all kind of similar solutions before opening this thread. Here’s a screenshot without the text-center attribute…

the title isn’t centered anymore.

My point being what’s is the default behaviour on each platform?

  • on iOS the title is centred
  • on Android the title is not centred (its left-ish aligned)
  • on Windows the title is not centred (its left-ish aligned)

<ion-header>
    <ion-navbar>
        <button ion-button menuToggle left >
            <ion-icon name="menu"></ion-icon>
        </button>
        <ion-title text-center>{{ titolo }}</ion-title>
    </ion-navbar>
</ion-header>

OK, I see what you mean.

The ion-title text is being centred within the it’s parent, the navbar.

However, the centring doesn’t take into account the side menu.

Exactly. Is there an easy fix to have an always-properly centered title on android?

See:

1 Like