# CSS - User posts divider line

**URL:** https://meta.discourse.org/t/css-user-posts-divider-line/112820
**Category:** Support
**Created:** [March 28, 2019, 3:22pm UTC](https://meta.discourse.org/t/css-user-posts-divider-line/112820 "2019-03-28T15:22:13Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![agemo](https://avatars.discourse-cdn.com/v4/letter/a/ac91a4/32.png) [@agemo](https://meta.discourse.org/u/agemo)
#### Post date: [March 28, 2019, 3:22pm UTC](https://meta.discourse.org/t/css-user-posts-divider-line/112820/1 "2019-03-28T15:22:13Z")

</div>

Newbie here - a very elemental question. I’m trying to find (using inspect element in the browser) the class that might control the div line between posts but it alludes me at present. **Is there or what is the class that controls this div line between users posts in every topic?**

I’d like to make it gone _or_ have more control over it.

Thanks!

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [March 28, 2019, 3:31pm UTC](https://meta.discourse.org/t/css-user-posts-divider-line/112820/2 "2019-03-28T15:31:51Z")

</div>

The border between posts is on two divs, `.topic-avatar` and `.topic-body` this would remove the border:

```scss
.topic-avatar, 
.topic-body {
  border-top: none;
}

```

You may also want to remove borders from the small topic actions like this:

 ![50%20AM](https://global.discourse-cdn.com/meta/original/3X/2/c/2ce80f5399114cd7871b52e15f87cdddd7b12ee3.png)

you’d accomplish that with

```scss
.small-action {
  border-top: none;
}

```

---

<div class="post-metadata">

### Author: ![agemo](https://avatars.discourse-cdn.com/v4/letter/a/ac91a4/32.png) [@agemo](https://meta.discourse.org/u/agemo)
#### Post date: [March 28, 2019, 3:43pm UTC](https://meta.discourse.org/t/css-user-posts-divider-line/112820/3 "2019-03-28T15:43:56Z")

</div>

Much thanks! That was quick! 😀

Oh and it worked! 😉

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [April 27, 2019, 3:44pm UTC](https://meta.discourse.org/t/css-user-posts-divider-line/112820/4 "2019-04-27T15:44:03Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
