Forum Discussion

ThomasRoss's avatar
ThomasRoss
Qrew Member
7 years ago

Is there a way to center or right justify text in a text field?

Hi! Is there a way to center or right justify text in a text field? Would I use some type of text-formula? Any insight would be greatly appreciated!

3 Replies

  • MichaelGraham2's avatar
    MichaelGraham2
    Qrew Assistant Captain
    Here is what I have to put a field called Last Name in a coloured box and justify it to center.
    Its a formula text field. The first part gives you whatever you want to put in the styling variable and the second part puts it together with the original field.

    var text styling = "box-sizing: border-box;  font-size: 12pt; width:150px; text-align:center; padding-top: 15px; color:white;background-color:blue; position: relative; height: 50px;"; 

    "<div style='" & $styling & "'>" & [Last Name] & "</div>