Display the page navigation on the top of pages of mobiles

Harvey

Active member
Adding this to extra.less is likely a better solution than editing the core files :)

Less:
// Display the page navigation on the top of pages of mobiles
@media (max-width: @xf-responsiveNarrow){
    .block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow){
        display: block;
    }
}

How would you modify this to show ONLY in threads?
 
This should do the trick
Less:
@media (max-width: @xf-responsiveNarrow){
    [data-template*="thread_view"] .block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow){
        display: block;
    }
}
 
Back
Top Bottom