How to remove picture and tags from latest in categories

i want to remove from here:
My web site .com/categories

From ā†’ Latests remove the avatars, tags, categories, just put the titule

Iā€™m sorry, could you elaborate on this in more detail?

to hide avatars, you can probably do something like this in common css of a theme or theme component:

.topic-list .posters {
    visibility: hidden;
}

and I assume you mean the category and tag drop down selectors - try this:

.combo-box.tag-drop, 
.combo-box.category-drop {
    display: none;
}
1 Like