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

<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: [November 25, 2017, 9:57pm UTC](https://meta.discourse.org/t/formatting-toolbar/40649/56 "2017-11-25T21:57:54Z")

</div>

Yes and no.

I use some css to hide some buttons I don’t use :

_list_, _numbered list_ and the _spacer_ after emphasis and upload buttons, it adds some space

```
button.ember-view.btn.no-text.list, button.ember-view.btn.no-text.bullet, .d-editor-spacer {
    display: none;
}

```

You can use the css customize section in admin to hide some button on mobile like color for example

```
button.color_ui_button {
    display: none;
}

```

I also changed to padding (space between each button) with something smaller on mobile

```
#reply-control .d-editor-button-bar .btn {
    padding: 0 4px;
}

```

With these little tweaks, it should be better. If not, you can still deactivate some buttons with the new options.

---

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