Change Labels / Placeholder text in forms

Need help? Please give a detailed explanation of your problem.
Post Reply
AllPro Expert
AllPro Expert
Joined: Tue Nov 18, 2014 12:42 pm
Website: apwt.bluezenith.com

Change Labels / Placeholder text in forms

  • Quote

Post

Hello,

Is there an easy way to change Labels / Placeholder text on contact forms?

I have been hearing complaints from some clients that since the 'name' field just says 'name', many, many people are only putting in their first name and omitting their last names. I want to be able to change 'name' to say 'First and Last Name'.

let me know how this can be done, thank you.
Support Team
Support Team
Website: www.allprowebtools.com

Re: Change Labels / Placeholder text in forms

  • Quote

Post

Your question previously was answered here: viewtopic.php?f=1&t=4075&p=8736&hilit=visibility#p8736

The method in this case would be identical, you simply need to change the class name that is being referenced.
AllPro Expert
AllPro Expert
Website: apwt.bluezenith.com

Re: Change Labels / Placeholder text in forms

  • Quote

Post

Hi Noah,

Thank you for your reply.

I have been attempting this, but to no avail. I know you are not CSS experts, but can you guide me to the correct classes/id's to use? this is what I have been trying, in terms of the classes:


.form-control.leadbox-input#name

.leadbox-input.form-group.Name

label.leadbox-input.form-group.Name

label.leadbox-input.form-group.name

Also - if there was a way to do this without using CSS, like such as within the Form builder itself, that would be much better - just a suggestion to make these forms better.
Support Team
Support Team
Website: www.allprowebtools.com

Re: Change Labels / Placeholder text in forms

  • Quote

Post

Code: Select all

.Name label:after {
    visibility: visible;
    content: 'Example';
    display: block;
}
.Name label {
    visibility: hidden;
}
AllPro Expert
AllPro Expert
Website: apwt.bluezenith.com

Re: Change Labels / Placeholder text in forms

  • Quote

Post

Great, thank you!

This worked for the labels. I appreciate your help with this!
Post Reply