Best way to customize the header? | Discourse

Curated this Code Snip Mod from Mega.Discourse.org

Jeff Atwood
co-founder - Discourse
Mar '14

This is pretty easy with the CSS header customizations.

Go to /admin (use the wrench menu)

Select customize

Add a new customization

Select Header

Paste in a simple header, like

<div id="top-navbar">
 <span id="top-navbar-links" style="height:20px;">
   <a href="http://example.com">Home</a>
  <a href="http://example.com/about/">About</a>
  <a href="http://example.com/news/">News</a>
  <a href="http://example.com/products/">Products</a>
  <a href="http://blog.example.com/blog">Blog</a>
  <a href="http://forums.example.com/">Forums</a>
 </span>
</div>

Tick the “enabled” checkbox

Save

See the post and sample output from the post here: