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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://shoppad.gitbook.io/uploadery/customize-the-app/customize-or-edit-labels-for-upload-image-editor.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
