XF 2.3 Page navigation on phones disappeared

For some odd reason XF removes it you can put it back with this in extra.less:
Less:
@media (max-width: @xf-responsiveNarrow) {
.block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow) { display: block; }
}
 
Last edited:
For some odd reason XF removes it you can put it back with this in extra .less:
Less:
@media (max-width: @xf-responsiveNarrow) {
.block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow) { display: block; }
}

The weird thing is I see the page numbers at the top of my iPhone another user doesn't.

Edit: The other user is using a different (apparently an outdated) style. Thank you for the code, it worked.
 
Last edited:
Is there a way to have page numbers in that circumstance? I feel like I could get 1 2 3 12 in there.

Thanks for the fix because people were just getting a watch button and nothing else before.
 
Back
Top Bottom