Disable the author of Hot Thread
kryan1990
New
How can I disable the name of the author and post date on my hot thread panel. It takes up a lot of space. Or atleast make it smaller?

0
Comments
The HTML of the Hot Discussions is like that:
ul#HotThreadsList_Items li.New a.Title Some Title div.Condensed a.PostAuthor Some Author span.PostDate Some DateSo you can easily hide both with CSS like that:
ul#HotThreadsList_Items div.Condensed { display: none; }Thank you so much!!!