sabirans04
As for changing text color.
Last night I managed to get these following codes to change the respective elements text color from black to white.
.DiscussionListItem {
color: white !important;
}
.DiscussionListItem-content {
color: white !important;
}
.Post.CommentPost {
color: white !important;
margin-left: 0px;
padding-left: 10px;
padding-right: 10px;
}
.Post-body {
color: white !important;
font-size: 19px;
font-family: Garamond, serif;
}
.DiscussionListItem-title {
color: white !important;
font-family: Garamond, serif;
font-size: 20px !important;
}
@media (max-width: 767.98px) {
.DiscussionListItem-title {
color: white !important;
font-family: Garamond, serif;
font-size: 20px !important;
text-decoration: none !important;
}
}
.DiscussionListItem-info {
font-family: Garamond, serif;
font-size: 12px;
}
:root {
--border-radius: 5px !important;
--discussion-title-color: white;
}
Hopefully these can help....🙂👍