---
title: Can I turn off image expansion when a product has an image? | Paperform Help Center | Paperform
description: Only by targeting the element using custom CSS (selected plans only).
url: "https://paperform.co/help/articles/can-i-turn-off-image-expansion-when-a-product-has-an-image"
type: static
generatedAt: "2026-04-04T00:42:01.354Z"
---

Can I turn off image expansion when a product has an image?
### Field Types

When a product has an image, hovering over it will cause an arrow icon to appear (this is always visible on mobile). Clicking or tapping this icon allows the visitor to expand the image and view additional images.

There is no native option to remove this, but you can target the element using [custom CSS](https://paperform.co/help/articles/custom-css/) (selected plans only).

One way of doing so might be:

```css
.Choices > div > label > .material-icons {
    display: none;
}
```

As an alternative, [switching to Card or Gallery layout](https://paperform.co/help/articles/how-can-i-display-the-list-of-products/) will move the arrow to the corner of the image instead of the center.

### Related Articles
  [How do I add images to products?  To add showcase images to products, click the Question field → Navigate to the Question Panel → Click on the "Manage Products" button → Click on the "Add Images +" button → Select the image for the product.](/help/articles/add-images-to-products/)
[Can I customize how products are displayed?  You can display products in one of three layouts: List, Card, or Gallery.](/help/articles/how-can-i-display-the-list-of-products/)
[What can I do with custom CSS?  Custom CSS provides fine-grained control over the styling on the page, including spacing, alignment, positioning, and lots more!](/help/articles/custom-css/)