CSS - User posts divider line

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!

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

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

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

you’d accomplish that with

.small-action {
  border-top: none;
}
7 Likes

Much thanks! That was quick! :grinning:

Oh and it worked! :wink:

2 Likes

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