XF 1.5 How to remove tag line from Resources sidebar block on forum home?

Alpha1

Well-known member
I would like to hide the tag line in the forum home sidebar block for New Resources.
How do I do this?
 
I would like to hide the tag line in the forum home sidebar block for New Resources.
How do I do this?
To hide it with css you can add this to the EXTRA.css template

Code:
.sidebar .tagLine {
    display: none;
}

Or you can hide the reference to the tagline within the template itself with a xen:comment.
 
Somehow the example above and the one below doesn't work:

.sidebar .miniResourceList .author,
.sidebar .miniResourceList .lastUpdate .tagLine
{
display:none!important;
}

@Russ what do you think?
 
Top Bottom