# I don't like the gap between the topic list header and the topnav

**URL:** https://meta.discourse.org/t/i-dont-like-the-gap-between-the-topic-list-header-and-the-topnav/44016
**Category:** UX
**Created:** [10 Maio , 2016 21:46 UTC](https://meta.discourse.org/t/i-dont-like-the-gap-between-the-topic-list-header-and-the-topnav/44016 "2016-05-10T21:46:51Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![emiosllc](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/emiosllc/32/49501_2.png) [@emiosllc](https://meta.discourse.org/u/emiosllc)
#### Post date: [10 Maio , 2016 21:46 UTC](https://meta.discourse.org/t/i-dont-like-the-gap-between-the-topic-list-header-and-the-topnav/44016/1 "2016-05-10T21:46:51Z")

</div>

Photo:

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

Can you please fix this awkward gap?

---

<div class="post-metadata">

### Author: ![gdpelican](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/gdpelican/32/81308_2.png) [@gdpelican](https://meta.discourse.org/u/gdpelican)
#### Post date: [10 Maio , 2016 21:57 UTC](https://meta.discourse.org/t/i-dont-like-the-gap-between-the-topic-list-header-and-the-topnav/44016/2 "2016-05-10T21:57:07Z")

</div>

FYI you could fix this yourself for your instance by going to Admin \> Customize \> CSS/HTML, and adding a new style:

```plaintext
.list-controls .nav {
  margin-bottom: 0px;
}

```

---

<div class="post-metadata">

### Author: ![emiosllc](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/emiosllc/32/49501_2.png) [@emiosllc](https://meta.discourse.org/u/emiosllc)
#### Post date: [10 Maio , 2016 22:14 UTC](https://meta.discourse.org/t/i-dont-like-the-gap-between-the-topic-list-header-and-the-topnav/44016/3 "2016-05-10T22:14:35Z")

</div>

That didn’t work ☹

Anything else I can try?

---

<div class="post-metadata">

### Author: ![Mittineague](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mittineague/32/114259_2.png) [@Mittineague](https://meta.discourse.org/u/Mittineague)
#### Post date: [10 Maio , 2016 23:45 UTC](https://meta.discourse.org/t/i-dont-like-the-gap-between-the-topic-list-header-and-the-topnav/44016/4 "2016-05-10T23:45:58Z")

</div>

> [@emiosllc](#):
>
> Anything else I can try?

Your browser’s dev tools could help you immensely for such things.

Try

```plaintext
.list-controls .nav,
.list-controls #create-topic {
  margin-bottom: 0px;
}

```
