@baris said in Multiple reply buttons on newest nodebb:
The reply button under each post is used to make a direct reply to the post. The blue reply button makes a reply to the topic itself.
It is also not new.
Hello, Is there a way to change the buttons below the OP.
Standard they are like
post views | Reply | Mark Unread | Not Watching | Sort By |
I want them to be
post views (completely left) ______________________________________________ | Mark Unread | Not Watching | Sort By | Reply |
Can somebody help me how to change this, and is this possible doing this by CSS and if sho, how?
It's easy if you use black magic.
.post-bar [component="topic/reply/container"] {
float: right;
}
.post-bar [component="topic/mark-unread"] {
float: left;
margin-right: 5px;
}
.post-bar [component="topic/watch"] {
float: left;
margin-right: 5px;
}
.post-bar [component="thread/sort"] {
float: left;
margin-right: 5px;
}
.post-bar .thread-tools {
float: left;
margin-right: 5px;
}
.post-bar .stats {
position: absolute;
left: 0px;
}
.post-bar .stats + .stats {
left: 80px;
}
@yariplus thank you so much for your help