Page heading text limitation
Posted: Tue Apr 30, 2013 4:04 am
by Bob Fludder
I'm, still using the old flash builder (for now) but I've noticed that only 15 characters (or thereabouts) of the page header text displays when testing - even though more than double that shows in the designer. Is there a limitation here ?
Page heading text limitation
Posted: Tue Apr 30, 2013 4:54 am
by Igor
Hello.
There is no any limitation. The length of the text is changed automatically depending on the screen resolution. If you want to change text length you should override css class. This can be done as follows
- Create css file.
- Add to css file next code
code
.ui-title {
margin: .6em 20% .8em!important; }
/code
where 20% is margin from left and right. The smaller the percentage the more text will be placed.
Page heading text limitation
Posted: Tue Apr 30, 2013 5:17 am
by Bob Fludder
Excellent. Thanks I'll give that a try