كيفية تغيير لون فواصل قائمة المواضيع؟

The divider lines are almost invisible, what’s the CSS to change it?

.topic-list-item
    {border-bottom: 1px solid #be235b;}

Obviously, adjust the color as you like.

إعجاب واحد (1)

Thank you! Do you know the CSS for the top divider too?

What you’re looking for is .topic-list-body.

.topic-list-body {
  border-top: 3px solid #be235b;
}
إعجابَين (2)

Great! One last question:

What’s the CSS for the header divider line

And the “last visit” text / line

You can find these by inspecting that element. Right click on the element > Inspect.

إعجاب واحد (1)
.d-header {
  box-shadow: 0 0 0 1px #be235b;
}
.topic-list .topic-list-item-separator .topic-list-data {
    border-top: 1px solid #be235b;
}
إعجابَين (2)

Thank you. And what about the “last visit” text?

When I do inspect element I don’t really know what I’m looking for… The tags usually aren’t visible

Wait. I got it, I needed to add “span” to the end

.topic-list-item-separator .topic-list-data span {
  color: #FF0000 !important;
}
إعجاب واحد (1)

Right click on, say, the ‘last read’ text, then click on ‘Inspect’. You should see the element in the developer tools, and you can copy over the class. This way, you can find the class and id of any element on the page.

إعجاب واحد (1)

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