• Resolved wynot

    (@wynot)


    Hello –
    I’m testing out your form for the first time and I set a placeholder for the Zip code field “Enter Zip Code” but it is not displaying? I tried setting css style to get it to show … but nothing?

    How can I get placeholders for input fields to work?
    Thank you.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author reputeinfosystems

    (@reputeinfosystems)

    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.

    Plugin Author reputeinfosystems

    (@reputeinfosystems)

    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

    Thread Starter wynot

    (@wynot)

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘placehoder not displaying’ is closed to new replies.