### [How to Locate Form ID and Field ID](https://wpforms.com/developers/how-to-locate-form-id-and-field-id/)

**Published:** October 9, 2019
**Author:** Umair Majeed

**Excerpt:** This tutorial will help walk you through how to find your form and field IDs needed for certain actions, filters and CSS you may want to use to customize your forms even further. 

**Content:**

When using custom code snippets or CSS with WPForms, you’ll often need to find specific form and field IDs. These IDs help you target exactly the right form or field you want to customize.

This guide will show you the quickest ways to find these IDs.

## Finding Your Form ID

The simplest way to quickly find a form’s ID is on the **Forms Overview** page. To get to this page, go to **WPForms » All Forms** and look for the **Shortcode** column. Your form ID is the number inside the shortcode.

For example, the screenshot below is indicating the shortcode `[wpforms id="1233"]`. The ID for this form would be `1233`.

![Finding the form ID](https://wpforms.com/wp-content/uploads/2024/11/form-id-wpforms-1024x626.png)## Finding Your Field ID

To find a specific field’s ID, edit your form in the Form Builder. Then, click on the field you want to identify and look at the **Field Options** panel on the left. The field ID appears at the top of the **General** tab.

For example, if you see “Single Line Text (ID #15)”, your field ID is `15`.

![Finding the field ID](https://wpforms.com/wp-content/uploads/2024/11/finding-field-ID-1024x499.png)## How to Use These IDs

When you see code snippets in our documentation, you’ll need to replace example IDs with your actual IDs. Here’s how to use them correctly:

- For form IDs, replace YOUR-FORM-ID with your actual form number. For example, if your form ID is 561, change `wpforms-YOUR-FORM-ID` to `wpforms-561`
- For field IDs, replace YOUR-FIELD-ID with your actual field number. For example, if your field ID is 13, change `field_YOUR-FIELD-ID` to `field_13`.

So if your form ID is 999 and your field ID is 4, you would change:

```

jQuery('#wpforms-123-field_13')
```

**to:**

```

jQuery('#wpforms-999-field_4')
```

**Note:** Always double-check your IDs before using them in code. Using the wrong ID means your customizations won’t work as expected.

These IDs are essential for many customizations:

- Form IDs are needed when applying CSS to a specific form, adding custom validation, or creating form-specific functionality.
- Field IDs are necessary when styling specific fields, adding custom validation rules, or creating field-specific calculations.

For instance, when customizing submit button colors, using specific form IDs ensures your changes only affect the intended forms:

```

/* Customize submit button color for specific forms */
#wpforms-form-561 .wpforms-submit {
    background-color: red;
}
```

And that’s all you need to find and use form and field IDs!

Next. would you like to learn more about customizing your forms? Take a look at our guide on [adding custom CSS styles for your forms](https://wpforms.com/docs/how-to-add-custom-css-to-your-wpforms/).

**Categories:** Getting Started

---

