# Formatting toolbar

**URL:** https://meta.discourse.org/t/formatting-toolbar/40649
**Category:** Plugin
**Created:** [March 6, 2016, 12:39pm UTC](https://meta.discourse.org/t/formatting-toolbar/40649 "2016-03-06T12:39:23Z")
**Posts on this page:** 1
**Showing post:** 28

<div class="post-metadata">

### Author: ![Steven](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/steven/32/187890_2.png) [@Steven](https://meta.discourse.org/u/Steven)
#### Post date: [April 1, 2017, 4:17pm UTC](https://meta.discourse.org/t/formatting-toolbar/40649/28 "2017-04-01T16:17:27Z")

</div>

I also added the underline button.

The T button is the H (heading) button translated in french.

The img button is usefull with the float one, because the copy/paste of a image link won’t work with it.

If you want to hide some buttons, two solutions :

- Add some css on admin/customize with a display: none for the buttons you want to hide.

Notice the _.addimg\_ui\_button_ here, it indicates that the img button will be hidden :

```plaintext
#reply-control .d-editor-button-bar .addimg_ui_button {
        display: none;
    }

```

The other css class if you want to use them :

```
.underline_ui_button
.color_ui_button
.floatl_ui_button
.center_ui_button
.right_ui_button
.justify_ui_button

```

Another solution would be to fork the plugin and delete the parts you don’t want to use, but if you’re not used to github it’s more difficult

---

_[View the full topic](https://meta.discourse.org/t/formatting-toolbar/40649)._
