# CSS selector separating posts

**URL:** https://meta.discourse.org/t/css-selector-separating-posts/327418
**Category:** Development
**Tags:** css
**Created:** [September 20, 2024, 1:29pm UTC](https://meta.discourse.org/t/css-selector-separating-posts/327418 "2024-09-20T13:29:04Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![ludwikc](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ludwikc/32/438823_2.png) [@ludwikc](https://meta.discourse.org/u/ludwikc)
#### Post date: [September 20, 2024, 1:29pm UTC](https://meta.discourse.org/t/css-selector-separating-posts/327418/1 "2024-09-20T13:29:04Z")

</div>

Hi,

I’ve modified the Default theme to have these “boxed” posts.

But I cannot find the proper selector to get rid of these lines.

 ![The image is a screenshot of a Slack conversation. (Captioned by AI)](https://global.discourse-cdn.com/meta/original/4X/e/4/f/e4facffaf6e29e4ce4f46ca4ac14da5bdbfa2042.png)

Anyone cares to guide me here?

---

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [September 20, 2024, 1:44pm UTC](https://meta.discourse.org/t/css-selector-separating-posts/327418/2 "2024-09-20T13:44:48Z")

</div>

Hello 👋

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

```

---

<div class="post-metadata">

### Author: ![ludwikc](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ludwikc/32/438823_2.png) [@ludwikc](https://meta.discourse.org/u/ludwikc)
#### Post date: [September 20, 2024, 2:57pm UTC](https://meta.discourse.org/t/css-selector-separating-posts/327418/3 "2024-09-20T14:57:29Z")

</div>

Almost there! Thank you so much @Don

It worked everywhere but last post in the topic:

 ![Arc 2024-09-20 16.56.40](https://global.discourse-cdn.com/meta/original/4X/e/4/5/e4549da9f10d05b3a2c931d0f433132d50177f41.png)

---

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [September 20, 2024, 3:06pm UTC](https://meta.discourse.org/t/css-selector-separating-posts/327418/4 "2024-09-20T15:06:20Z")

</div>

I think that border is for the topic timer and topic status info. 🤔

```scss
.topic-status-info,
.topic-timer-info {
  border-top: none;
}

```

---

<div class="post-metadata">

### Author: ![ludwikc](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ludwikc/32/438823_2.png) [@ludwikc](https://meta.discourse.org/u/ludwikc)
#### Post date: [September 21, 2024, 9:27am UTC](https://meta.discourse.org/t/css-selector-separating-posts/327418/5 "2024-09-21T09:27:16Z")

</div>

Thank you @Don! Combined, this is what gets rid of these lines:

```plaintext
.topic-status-info,
.topic-timer-info,
.topic-avatar {
  border-top: none;
}

```

---

<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: [October 21, 2024, 9:27am UTC](https://meta.discourse.org/t/css-selector-separating-posts/327418/6 "2024-10-21T09:27:37Z")

</div>

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