# Changing the header font for Custom Header Links

**URL:** https://meta.discourse.org/t/changing-the-header-font-for-custom-header-links/277629
**Category:** Development
**Tags:** custom-header-links
**Created:** [May 18, 2020, 2:27pm UTC](https://meta.discourse.org/t/changing-the-header-font-for-custom-header-links/277629 "2020-05-18T14:27:00Z")
**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: [May 19, 2020, 4:11am UTC](https://meta.discourse.org/t/changing-the-header-font-for-custom-header-links/277629/2 "2020-05-19T04:11:55Z")

</div>

The links are wrapped in a div with the class `custom-header-links` so you can use that to target them. Try adding this CSS to your main [theme.](https://meta.discourse.org/t/beginners-guide-to-using-discourse-themes/91966)

```css
@import url('https://fonts.googleapis.com/css2?family=Convergence&display=swap');

.custom-header-links {
  font-family: 'Convergence', sans-serif;
}

```

---

_[View the full topic](https://meta.discourse.org/t/changing-the-header-font-for-custom-header-links/277629)._
