# 如何移除按钮上的图标

**URL:** <https://meta.discourse.org/t/how-to-remove-icons-from-buttons/179800>\
**Category:** Support\
**Created:** [2021年二月15日 16:31 UTC](https://meta.discourse.org/t/how-to-remove-icons-from-buttons/179800 "2021-02-15T16:31:34Z")\
**Posts on this page:** 4\
**Page:** 1

<div class="post-metadata">

**Author:** ![hackernun](https://avatars.discourse-cdn.com/v4/letter/h/e47c2d/32.png) [@hackernun](https://meta.discourse.org/u/hackernun)\
**Post date:** [2021年二月15日 16:31 UTC](https://meta.discourse.org/t/how-to-remove-icons-from-buttons/179800/1 "2021-02-15T16:31:34Z")

</div>

您好！我想更改用户在撰写回复后使用的“回复”按钮。我已通过自定义 `js.topic.reply.title` 将按钮文本改为“提交”。现在我想移除该按钮上的箭头图标。感谢您的帮助。

---

<div class="post-metadata">

**Author:** ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)\
**Post date:** [2021年二月15日 20:44 UTC](https://meta.discourse.org/t/how-to-remove-icons-from-buttons/179800/2 "2021-02-15T20:44:13Z")

</div>

您需要向主题添加一些 CSS（位于 管理 \> 自定义 \> 主题 下）

对于编辑器中的回复按钮，以下代码即可生效：

```css
.submit-panel {
  .btn-primary .d-icon { 
    display: none;
  }
}

```

---

<div class="post-metadata">

**Author:** ![hackernun](https://avatars.discourse-cdn.com/v4/letter/h/e47c2d/32.png) [@hackernun](https://meta.discourse.org/u/hackernun)\
**Post date:** [2021年二月16日 12:14 UTC](https://meta.discourse.org/t/how-to-remove-icons-from-buttons/179800/3 "2021-02-16T12:14:52Z")

</div>

Kris，非常感谢您的回复和说明，效果完美！

---

<div class="post-metadata">

**Author:** ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)\
**Post date:** [2021年三月18日 12:15 UTC](https://meta.discourse.org/t/how-to-remove-icons-from-buttons/179800/4 "2021-03-18T12:15:39Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
