XF 2.1 Code for conditional css only for tag pages

Nitaaiji

Active member
I want to apply the below 2 css only on tag pages like:
myforum.com/tags/xxxxx

.contentRow-snippet {
display: none;
}
.contentRow-minor {
display: none;
}

What conditional css should I use for that so that this css does not get applied to all the other sections? Thanks in advance for any help.

PS. Basically I want to hide the meta and excerpt for each thread on tag pages.
 
Try this:

CSS:
[data-template="tag_view"] .contentRow-snippet {
    display: none;
}
[data-template="tag_view"] .contentRow-minor {
    display: none;
}

Thanks very very much @BassMan. You made my day. Has someone made some list of what are these conditional css data-template values for forums list, forum view, threads, profile posts, latest activity, etc.? It would be so so helpful for us styling novices.
 
Top Bottom