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:
Back
Top Bottom