Alpha1 Well-known member Apr 19, 2016 #1 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?
EQnoble Well-known member Apr 19, 2016 #2 Alfa1 said: I would like to hide the tag line in the forum home sidebar block for New Resources. How do I do this? Click to expand... 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. Upvote 0 Downvote
Alfa1 said: I would like to hide the tag line in the forum home sidebar block for New Resources. How do I do this? Click to expand... 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.
Alpha1 Well-known member Aug 4, 2016 #3 Thank you! How can I also remove user name and post date from it? Upvote 0 Downvote
EQnoble Well-known member Aug 4, 2016 #4 Code: .sidebar .miniResourceList .author, .sidebar .miniResourceList .lastUpdate { display: none; } Upvote 0 Downvote
Alpha1 Well-known member Nov 12, 2017 #5 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? Upvote 0 Downvote
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?