# Help with Blocked words and custom button links

**URL:** https://meta.discourse.org/t/help-with-blocked-words-and-custom-button-links/275381
**Category:** Support
**Created:** [August 16, 2023, 1:28pm UTC](https://meta.discourse.org/t/help-with-blocked-words-and-custom-button-links/275381 "2023-08-16T13:28:04Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![Canapin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/canapin/32/119591_2.png) [@Canapin](https://meta.discourse.org/u/Canapin)
#### Post date: [August 16, 2023, 4:20pm UTC](https://meta.discourse.org/t/help-with-blocked-words-and-custom-button-links/275381/3 "2023-08-16T16:20:14Z")

</div>

> [@AryaM](#):
>
> 1. I am really new to this platform and any help would be highly appreciated!

There’s a learning curve on how to do that, but once you’re done, it will be of great help.

To make it short, the part from the tutorial about Discourse modification that is about what you want to achieve is here: [https://meta.discourse.org/t/beginners-guide-to-developing-discourse-themes/93648#modifying-discourse-templates-22](https://meta.discourse.org/t/beginners-guide-to-developing-discourse-themes/93648#modifying-discourse-templates-22)

If you want to have a ready-to-use skeleton, here’s what to do.

1. Create a new empty theme component from Admin → Customize → Themes (don’t forget to enable it in your theme(s), or select your current theme.

2. Go to Edit CSS/HTML.

3. In Head, paste this code:

```html
<script type="text/x-handlebars" data-template-name="/connectors/above-main-container/custom-buttons">
  <div class="wrap">
    <div class="custom-buttons">
        <a href="/faq">Community guidelines</a> | <a href="#">Contact Moderator</a>
    </div>
  </div>
</script>

```

1. In the CSS tab, paste this code:

```css
.custom-buttons {
    margin: 1em 0;
    text-align: right;
}

```

The result will look like this:

 ![image](https://global.discourse-cdn.com/meta/original/4X/3/1/4/314470cf19fffa6e2df306590b81c9a1f589667e.png)

---

_[View the full topic](https://meta.discourse.org/t/help-with-blocked-words-and-custom-button-links/275381)._
