# Help us test the new header code!

**URL:** https://meta.discourse.org/t/help-us-test-the-new-header-code/43184
**Category:** Feature
**Tags:** performance
**Created:** [April 25, 2016, 3:26pm UTC](https://meta.discourse.org/t/help-us-test-the-new-header-code/43184 "2016-04-25T15:26:24Z")
**Posts on this page:** 1
**Showing post:** 43

<div class="post-metadata">

### Author: ![eviltrout](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/eviltrout/32/5275_2.png) [@eviltrout](https://meta.discourse.org/u/eviltrout)
#### Post date: [April 27, 2016, 5:23pm UTC](https://meta.discourse.org/t/help-us-test-the-new-header-code/43184/43 "2016-04-27T17:23:42Z")

</div>

You should be able to use the [decorateWidget](https://github.com/discourse/discourse/blob/master/app/assets/javascripts/discourse/lib/plugin-api.js.es6#L145) plugin API call to customize the header.

For example:

```js
api.decorateWidget('home-logo:after', dec => {
  return h('span', 'I appear after the logo');
});

```

You can use `home-logo:after` for after the logo, and `header:after` for after the header.

---

_[View the full topic](https://meta.discourse.org/t/help-us-test-the-new-header-code/43184)._
