# Customize or edit labels for upload image editor

By default, Uploadery's **in-browser image editor** feature will include some icons at the top for usability, as seen below:

![](https://1830227525-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FttS2ys9nVT4SeVSaGa3f%2Fuploads%2Fgit-blob-83f07cc953b96ce9550b2785fa19a34bc417aeed%2Fdocsassets555e25e4e4b027e1978e1c9aimages5cdb56612c7d3a6d82bd7718file-bs0f8yv8be.png?alt=media)

To include some labels underneath them for a more clear user experience, follow these steps:

![](https://1830227525-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FttS2ys9nVT4SeVSaGa3f%2Fuploads%2Fgit-blob-9e9168f8e0ded9f3f8ba1f962dc764a4871a4f91%2Fdocsassets555e25e4e4b027e1978e1c9aimages5cdb56b20428634b85593871file-lnultsa4la.png?alt=media)

1\. Starting from your Shopify admin dashboard, click on **Online Store**, then click on **Themes**.

2\. Find the theme you want to edit, click the **Actions** button, then click **Edit code**.

<figure><img src="https://1830227525-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FttS2ys9nVT4SeVSaGa3f%2Fuploads%2Fgit-blob-0095c44a4ee5252b2eb48872f9a8c0deef0b0de7%2Fimage.png?alt=media" alt=""><figcaption></figcaption></figure>

3\. Open the **Assets** folder, then navigate to your theme's main CSS file (this file is commonly named *timber.scss.liquid*, *theme.scss.liquid*, *stylesheet.scss.liquid*, and *style(s).scss.liquid*).

4\. Paste the following code snippet at the bottom of the file.

```css
 .uploadery-undo:after {
  content: "Undo";
  color: #fff;
  display: block;
}

.uploadery-redo:after {
  content: "Redo";
  color: #fff;
  display: block;
}

.uploadery-save:after {
  content: "Save";
  color: #fff;
  display: block;
}

.uploadery-close:after {
  content: "Close";
  color: #fff;
  display: block;
}

.uploadery-crop:after {
  content: "Crop";
  color: #fff;
  display: block;
}

.uploadery-rotate-right::after {
  content: "Rotate Right";
  color: #fff;
  display: block;
}

.uploadery-rotate-left:after {
  content: "Rotate Left";
  color: #fff;
  display: block;
}

.uploadery-done:after {
  content: "Done";
  color: #fff;
  display: block;
}
```

5\. **Save** your changes.

{% hint style="info" %}
If you need any help getting this set up, feel free to contact our support team. We'd be happy to help out!
{% endhint %}

<figure><img src="https://1830227525-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FttS2ys9nVT4SeVSaGa3f%2Fuploads%2Fgit-blob-0095c44a4ee5252b2eb48872f9a8c0deef0b0de7%2Fimage.png?alt=media" alt=""><figcaption></figcaption></figure>
