Hello,
I’ve checked your given URL and it seems that the font size of the input is set to 0 or blank and that’s why it’s not displaying.
I recommend you please change the font-size for the input field from ARForms Lite > Edit Form > Styling Options > Basic Styling Options > Font Options > Advanced Font Options > Input Font Settings.
Change the font size and save the form and then check again.
Thanks,
Thread Starter
wynot
(@wynot)
Thank you! That worked!
But now I have a problem with setting the zip-regular expression validation [0-9][5]
and it will not accept number or letters – getting “Entered value is invalid” no matter what I enter?
Hope you can help.
Hello,
As I can see you’ve set the regular express [0-9][5], which can accept numbers only between 0-9 ( 1 character ) and 5 so it can accept value like 05, 15, 25, …., 95.
To accept alpha numeric values then you should change the regular expression to [a-zA-Z0-9]+ and then check again. This will accept a to z characters ( capital and small both ) as well as the numbers. Also, +(plus) in the regular expression indicate that it’ll accept as much as characters. If you want it to limit with specific lenght, then you can replace the +(plus) sign with ‘{5}’ (without quotes. limit for length 5)
Thanks