XF 2.2 ForumNewPost Thread title Page Jump

ed762

Member
In ForumNewPost below each thread title, the desk top full site style shows the pagination (numbers in square like this, but the they are missing in the mobile style.

What is the way to add them back to the mobile style?
Screenshot 2024-07-04 at 1.24.31 PM.webp
 
Last edited:
Try putting in your extra.less template

Code:
.block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow)
{
   display: initial;
}
 
I solved the problem using this:

/* Mobile specific override */
@media (max-width: 600px) {
.structItem-pageJump {
display: block; /* Ensure the element is displayed */
white-space: nowrap;
overflow-x: auto; /* Horizontal scrolling if needed */
padding: 5px 0;
text-align: center; /* Center align for better appearance */
 
Back
Top Bottom