# Add text to top navbar to the left of login/signup buttons

**URL:** https://meta.discourse.org/t/add-text-to-top-navbar-to-the-left-of-login-signup-buttons/102330
**Category:** Support
**Created:** [November 19, 2018, 7:33pm UTC](https://meta.discourse.org/t/add-text-to-top-navbar-to-the-left-of-login-signup-buttons/102330 "2018-11-19T19:33:05Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Johani](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/johani/32/176920_2.png) [@Johani](https://meta.discourse.org/u/Johani)
#### Post date: [November 20, 2018, 9:12am UTC](https://meta.discourse.org/t/add-text-to-top-navbar-to-the-left-of-login-signup-buttons/102330/2 "2018-11-20T09:12:42Z")

</div>

`position: fixed` is very troublesome in some ways because it’s pretty much blind to everything except the viewport.

Instead you can [decorate](https://meta.discourse.org/t/developer-s-guide-to-discourse-themes/93648#heading--4-c-6) the header-bottons widget with something like this in the header section on desktop (mobile has no space for this)

```plaintext
<script type="text/discourse-plugin" version="0.8">
api.decorateWidget("header-buttons:before", helper => {
  return helper.h("span.header-links", [
    helper.h(
      "a#library.lc-menu.custom-header-link",
      {
        href: "https://company.com/",
        target: "_blank"
      },
      "Name."
    ),
    helper.h("span.powered-by", "Powered by"),
    helper.h(
      "a.custom-header-link",
      {
        href: "https://company.com/"
      },
      "company"
    )
  ]);
});
</script>

```

and a little bit of SCSS for padding and colors:

```plaintext
.header-links {
  padding-right: 0.5em;
  .powered-by {
    padding: 0 0.25em;
    color: foobar; // <-- change text color
  }
  .custom-header-link {
    color: foobar; // <-- change link colors
  }
}

```

that should be enough to create something like this:

 ![image](https://global.discourse-cdn.com/meta/original/3X/9/d/9ddf15391a5171de176d71b37dcf86705f2076d0.png)

---

_[View the full topic](https://meta.discourse.org/t/add-text-to-top-navbar-to-the-left-of-login-signup-buttons/102330)._
