CSS selector separating posts

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.

Anyone cares to guide me here?

Hello :wave:

.topic-avatar {
  border-top: none;
}
5 Likes

Almost there! Thank you so much @Don

It worked everywhere but last post in the topic:

1 Like

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

.topic-status-info,
.topic-timer-info {
  border-top: none;
}
3 Likes

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

.topic-status-info,
.topic-timer-info,
.topic-avatar {
  border-top: none;
}
3 Likes