# Howto add a GAP between Categories

**URL:** https://meta.discourse.org/t/howto-add-a-gap-between-categories/170030
**Category:** Support
**Created:** [November 13, 2020, 10:54am UTC](https://meta.discourse.org/t/howto-add-a-gap-between-categories/170030 "2020-11-13T10:54:26Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![hhlp](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/hhlp/32/124988_2.png) [@hhlp](https://meta.discourse.org/u/hhlp)
#### Post date: [November 13, 2020, 10:54am UTC](https://meta.discourse.org/t/howto-add-a-gap-between-categories/170030/1 "2020-11-13T10:54:26Z")

</div>

I’ve had 7 Categories but there are separated by a fine underline that it almost invisible and I would like a little spaces between then to get more visibility and clearly respectively

this is what i get and the arrow indicate where I can add the GAP between Categories:

![2020-11-13_11-45](https://global.discourse-cdn.com/meta/optimized/3X/8/3/83c85b7695cef7ceea059976e31c502c1a082a42_2_50x499.png)

desktop category page style: Categories and Latest topics  
category style: Bullet

Is this possible?

Regards.,

---

<div class="post-metadata">

### Author: ![osioke](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/osioke/32/238946_2.png) [@osioke](https://meta.discourse.org/u/osioke)
#### Post date: [November 13, 2020, 11:01am UTC](https://meta.discourse.org/t/howto-add-a-gap-between-categories/170030/2 "2020-11-13T11:01:18Z")

</div>

Try inspecting with your browser’s dev tools to find the CSS to target and then adjust accordingly. You may find this guide useful.

> [@Making custom CSS changes on your site](https://meta.discourse.org/t/how-to-make-css-changes-on-your-site/168101):
>
> bookmark This guide explains how to make CSS changes on your Discourse site, including an introduction to CSS, where to add CSS in Discourse, and how to find the right selectors using browser inspection tools. person_raising_hand Required user level: Administrator Summary This guide covers: A brief introduction to CSS and key concepts How to add CSS to your Discourse site using theme components Using browser inspection tools to find the right CSS selectors Understanding CSS basics C…

---

<div class="post-metadata">

### Author: ![Paracelsus](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/paracelsus/32/164912_2.png) [@Paracelsus](https://meta.discourse.org/u/Paracelsus)
#### Post date: [November 13, 2020, 12:31pm UTC](https://meta.discourse.org/t/howto-add-a-gap-between-categories/170030/3 "2020-11-13T12:31:18Z")

</div>

Check our CSS at: [Categorias - FórumSCP](https://www.forumscp.com/categories)

Basically you need these:

```plaintext
border-collapse: separate;
border-spacing: 0px 1em;

```

But maybe someone has a better approach.
