Hi,
I use BBpress + Post Comments as bbPress Topics + Kadence
I have a bug the last comment is fixed at the top of the page and here I think why:
@media screen and (min-width: 767px) {
.reply {
position:absolute;
top:0;
right:0;
margin:0
}
}
I solved the problem like this:
@media screen and (min-width: 767px) {
.reply {
position: inherit!important;
}
}
What do you think ?