> For the complete documentation index, see [llms.txt](https://shoppad.gitbook.io/uploadery/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://shoppad.gitbook.io/uploadery/customize-the-app/customize-or-edit-labels-for-upload-image-editor.md).

# 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:

![](/files/xDttR378L8yKwxU6Qu8D)

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

![](/files/6EvEPAY5BQN40qPO3eWF)

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="/files/uhaVasFzp9gp18nEFavW" 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="/files/DnWstGxoWTBz8FiTqYak" alt=""><figcaption></figcaption></figure>
