### [How to Hide Image Choice Labels with WPForms](https://wpforms.com/developers/how-to-hide-image-choice-labels-with-wpforms/)

**Published:** June 30, 2021
**Author:** Editorial Team

**Excerpt:** This tutorial will walk you through how you can easily use CSS to hide Image Choice labels for your forms. 

**Content:**

## Introduction

Would you like to hide the image choice labels on the **Multiple Choice** and **Checkbox** form fields? Using the option to display images for these fields instead of just labels is a great way of capturing your visitor’s attention, but perhaps you’d like to let the images speak for themselves and remove the labels that appear under these images? Using a small CSS snippet you can easily hide the labels for these images and in this tutorial, we’ll show you exactly how!

## Creating your form

To begin, we’ll create a new form and add our fields. Because we already know we want to use images for our **Checkbox** field, we’ll add this field and the images to go with them.

If you need any assistance in creating your form, [please see this helpful guide](https://wpforms.com/docs/creating-first-form/ "Creating Your First Form"). In addition, if you also need assistance on how to set up a field using the **Image Choices**, [please review this documentation](https://wpforms.com/docs/how-to-add-image-choices-to-fields/ "How to Add Image Choices to WPForms").

![add your Checkbox image choices to your form](https://wpforms.com/wp-content/uploads/2021/06/wpforms-new-image-choices.jpg)

## Adding CSS to hide image choice labels

Now that the form has been created, you can see the labels under the images.

![you can see the labels display under the images](https://wpforms.com/wp-content/uploads/2021/06/hide-label-image-choices-wpforms.jpg)

Since we want to hide these labels, we’re going to add some CSS to hide these.

If you need any help in adding CSS to your site, [please see this tutorial](https://wpforms.com/developers/how-to-add-custom-css-styles-for-wpforms/ "How to Add Custom CSS Styles for WPForms").

Simply copy and paste this CSS to your site.

```

form.wpforms-form .wpforms-field-container ul.wpforms-image-choices span.wpforms-image-choices-label {
    display: none;
}
```

This CSS will not only hide the labels that appear under the images but will also remove any margin (spacing) that is automatically applied under the images.

![Now you'll see the labels are no longer there](https://wpforms.com/wp-content/uploads/2021/06/wpforms-hide-image-choice-labels.jpg)

Would you like to also remove the whitespace that is placed around the image choices? Take a look at our article on [How to Remove Whitespace From Around Image Choices](https://wpforms.com/developers/how-to-remove-whitespace-from-around-image-choices/ "How to Remove Whitespace From Around Image Choices").

**Categories:** Tutorials

**Tags:** CSS

---

