E ed762 Member Jul 4, 2024 #1 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? Last edited: Jul 4, 2024
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?
Mr Lucky Well-known member Jul 4, 2024 #2 Try putting in your extra.less template Code: .block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow) { display: initial; } Upvote 0 Downvote
Try putting in your extra.less template Code: .block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow) { display: initial; }
E ed762 Member Jul 4, 2024 #3 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 */ Click to expand... Upvote 0 Downvote
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 */ Click to expand...