XF 2.2 Removing Icons in mobile page

Ottavius

Member
Can the icons pointed with the red arrow be hidden, disabled in a mobile page?
If so, how to do it? Thanks.


SCXF.png
 
Can those icons be moved at the bottom?
This website we're updating, it never had a forum, but we like the responsiveness of XF and easily create articles that we can lock for no further replies..
If people register, is fine too, but we're not aiming to have registered members.
 
To hide them on mobile add the following code to the extra.less template:

CSS:
@media (max-width: @xf-responsiveNarrow) {
  .p-navgroup-link--conversations, .p-navgroup-link--whatsnew, .p-navgroup-link--search {
       display: none;
  }
}
 
Back
Top Bottom