Reputation: 186
i made an application with Jquery Mobile. I wanna ask, how to remove the dots so that all titles can be seen? Because when I shrink the browser, the title was changed to the dots. I want to make it to be normal. thanks
Here's the screenshoot: app
Upvotes: 0
Views: 655
Reputation: 185
Not 100% sure what you're asking but I had a similar issue that the headers where being centered and therefore showing dots if they didn't so I modified the /jquery.mobile-1.3.2.css file line 1163
.ui-header .ui-title, .ui-footer .ui-title { margin: .6em 30% .8em;
to
margin: .6em 0.8em;
unnecessary padding since its centered anyway
Upvotes: 1
Reputation: 96727
Maybe it uses the CSS property text-overflow
with the value ellipsis
?
If so, you'd have to overwrite the overflow
property to use visible
.
Upvotes: 2