> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://docs.helixo.co/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How to remove 'Go to cart'/checkout icon?

Sometimes you want a clean and minimal look for your [popups / inpage / floating](https://docs.helixo.co/en/article/everything-about-popup-vs-in-page-vs-floating-1e3oiwa/) widget offers.

Let's take a look at how to remove the icons form the buttons

![](https://storage.crisp.chat/users/upload/plugin/-/c/6/1/d/c61d79638ebd5800/2e81877a-c150-81c6-8cfb-d39072_b5crkw.png)

## How to remove accept button icon?

Add the following CSS code inside `Design > Additional CSS` and save the funnel

|| **Quick Info!**
|| This is a good read about adding CSS styles to the UFE app without modifying the theme.
|| [How to add additional CSS styles?](https://docs.helixo.co/en/article/how-to-add-additional-css-styles-1971b4g/) 

```css
.ufe-btn:not(.ufe-danger) .ufe-ico {
		display: none;
}
```

## How to remove both accept button and remove button icons?

You can add this code inside `Design > Additional CSS` for removing both button icons.

```css
.ufe-btn img.ufe-ico {
    display: none;
}
```

## How to remove checkout button right arrow icon?

Append this code inside `Design > Additional CSS` if there is any other styles added before.

```css
.ufe-core .chkout:not(.uloader):before {
    content: none;
}
```

|| **Pro Tip!** 
|| If you want to change the checkout button right arrow to something another U[nicode icon](https://medium.com/feedium/huge-list-of-unicode-and-emoji-symbols-to-copy-and-paste-df1f408767a6) then add CSS like this. You can even add emojis like this 🙂
|| `.ufe-core .chkout:not(.uloader):before {
|| content: 'PASTE UNICODE ICON HERE';
|| }`

.ufe-core .chkout:not(.uloader):before {
    content: '✓';
}

Hope you have learned how to remove icons from the buttons.

![Remove button without icon](https://storage.crisp.chat/users/upload/plugin/-/c/6/1/d/c61d79638ebd5800/2e81877a-c150-81b1-92ca-fcf3c2_1tybbq7.png)

![Add to cart button without icon](https://storage.crisp.chat/users/upload/plugin/-/c/6/1/d/c61d79638ebd5800/2e81877a-c150-811b-868b-d31f63_qym161.png)

Hope you've got some value from this article. Let us know your feedback 🙂  We are excited to hear your thoughts.

|| **Did we miss something?**
|| No worries! Message us by clicking the chat icon 💬  inside the app.
|| Or Just email our team at [support@helixo.co](mailto:support@helixo.co) ✌️