XF 2.2 How to show node description full view (with page numbers) on mobile?

orhanorak

Member
Hi;
How to show node description full view (with page numbers) on mobile?

desktop view:
1662022537213.webp
Mobile view:
1662022609726.webp

as you see that, i can't see the page number boxes on mobile.

I want to change nodelist style for mobile, like desktop view.

thanks
 
as you see that, i can't see the page number boxes on mobile.
Code:
@media (max-width: 650px)
.structItem-pageJump, .structItem-extraInfoMinor {
    display: none;
}

This code is responsible for hiding the PageJump when a display size X is set.
If you still want to have the PageJump you have to overwrite the code.
 
Code:
@media (max-width: 650px)
.structItem-pageJump, .structItem-extraInfoMinor {
    display: none;
}

This code is responsible for hiding the PageJump when a display size X is set.
If you still want to have the PageJump you have to overwrite the code.

hi;

i have added this code into extra.less like this:

@media (max-width: 650px)
.structItem-pageJump, .structItem-extraInfoMinor {
display: block;
}
but still i can't see the page numbers :(

may be i did a mistake?
 
Code:
@media (max-width: @xf-responsiveMedium)
{
  .structItem-pageJump
  {
    display: initial;
  }
}

this works for me
 
Keep in mind that those page numbers inline with the thread title are removed on mobile devices because the buttons are too small to easily use. Google will see this issue as your forum not being responsive and it could hurt SEO.
 
Top Bottom