XF 2.2 How to alter ResponsiveNarrow forumlist page

CTS

Active member
I have been trying to figure this out for a bit, so I thought I would ask.

Where is the forumhome list and forum list template edited at?

I am hoping on my ResponsiveNarrow where it lists forums, to only list the forum name and forum icon. I wish to eliminate all the other data like last poster, thread name, etc.

Just the forum icon and forum name in the forum lists in responsiveNarrow.

I was looking for the correct template to edit.

Hoping someone has seen this before.
 
Solution
Try this for a start (in extra.less)

Code:
@media (max-width: @xf-responsiveNarrow) {
    
.node-statsMeta, .node-extra, .node-description

{display:none}
    
}
It may be better to keep the template as is, but use CSS (in extra .less) to hide the stuff you don't want to show in responsiveNarrow
Thank you and yes, I agree.

Honestly my skills at knowing how to do that are limited. I have a couple things in extraless that hide certain items, but how do I determine how to hide certain elements.
 
Top Bottom