Nathanael
Posts: 0
Joined: Tue Dec 11, 2012 11:25 pm

Is it possible to not truncate the titles of pages?

By default, Appery.io truncates the titles of pages. In my case, I want the title of the page to be "Teaching Challenge" (something that should easily fit in the bar on top of the app) but it always ends up being "Teaching Chal...".

Is there a workaround?

Thanks!

maxkatz
Posts: 0
Joined: Fri Aug 13, 2010 3:24 pm

Is it possible to not truncate the titles of pages?

Not Appeery.io... jQuery Mobile. I don't remember, there might be an option to control that. Check their docs.

Alfred Butler
Posts: 0
Joined: Wed Sep 18, 2013 12:35 pm

Is it possible to not truncate the titles of pages?

Create a CSS file in your project.

Add this to the file
.ui-header .ui-title {
overflow: visible !important;
white-space: normal !important;
}

Relaunch the app.

You can also adjust this style to whatever you want.

Try this also

.ui-header .ui-title {
margin-right: 10%;
margin-left: 10%;
}

First one is the one I use

Return to “Issues”