HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Disable the author of Hot Thread

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?

Comments

  • R_JR_J Ex-Fanboy Munich Admin

    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 Date
    

    So you can easily hide both with CSS like that:

    ul#HotThreadsList_Items div.Condensed {
      display: none;
    }
    
  • Thank you so much!!! :)

Sign In or Register to comment.