border-radius not showing at thread-list

erich37

Well-known member
I applied a background-color and also a border radius to each thread in the "thread list view".

However, the border-radius is showing at the right-hand-side, but is not showing at the left-hand-side of the box.

What is wrong here ?

Code:
.discussionListItem, .memberListItem {
    background: #F1F1F1 !important;
    border: 1px solid #000000 !important;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 0;
}
 
Top Bottom