MyBB Community Forums

Full Version: Anywhere I go all threads are selected
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I have a problem.
In any section I navigate to, I see this text on top of it:

All 6 threads on this page are selected. Select all 6 threads in this forum.
All 6 threads in this forum are selected. Clear Selection.

6 being the number of threads in that section.

Any idea how to make it not show that without actually selecting all threads myself?
Go to: ACP > Themes > Your theme > global.css > and add the following code in it;
.hiddenrow {
    display: none;
}

.selectall {
    background-color: #FFFBD9;
    font-weight: bold;
    text-align: center;
}

save style sheet;
Thank you, it worked.