# Add Sidebar support "Discourse Icon" & more

**URL:** https://meta.discourse.org/t/add-sidebar-support-discourse-icon-more/359588
**Category:** Feature
**Tags:** doc-categories
**Created:** [March 31, 2025, 7:48am UTC](https://meta.discourse.org/t/add-sidebar-support-discourse-icon-more/359588 "2025-03-31T07:48:40Z")
**Posts on this page:** 1
**Showing post:** 9

<div class="post-metadata">

### Author: ![pacharanero](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pacharanero/32/500583_2.png) [@pacharanero](https://meta.discourse.org/u/pacharanero)
#### Post date: [July 9, 2025, 6:10pm UTC](https://meta.discourse.org/t/add-sidebar-support-discourse-icon-more/359588/9 "2025-07-09T18:10:45Z")

</div>

> [@paulswithers](#):
>
> Is there a way to change the icon used for a specific link? I dug into the code and it looks like this is hard-coded in at doc-category-sidebar-panel.js and `getPrefixValue()`. Is my reading of the code correct?
> 
> If this isn’t possible currently, is it planned for the roadmap?

+1 for a way to use different icons or suppress the icons. Having a 📄 icon exactly the same for each item in the list doesn’t really add anything for me.

In case it helps anyone, here is CSS which suppresses the 📄 in Discourse Doc Categories sidebar lists but doesn’t suppress the sidebar icons/dots elsewhere in Discourse.

```plaintext
.discourse-docs-sidebar-panel {
    .sidebar-section-link .sidebar-section-link-prefix {
        display: none !important;
    }
    .sidebar-section-link-content-text {
        margin-left: 10px;
    }
}

```

The `margin-left: 10px;` bit can be tweaked to align the text in a visually pleasing way to you.

Just put this in your custom theme CSS (or make it part of a bespoke theme component in your site for convenience)

---

_[View the full topic](https://meta.discourse.org/t/add-sidebar-support-discourse-icon-more/359588)._
