how to get ride of the label of "Sub-Forums:" under each forum

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • xwang18
    New Member
    • Mar 2008
    • 19
    • 3.6.x

    how to get ride of the label of "Sub-Forums:" under each forum

    That label takes up a lot of space and I'd like to remove them under each forum. Is there a way to do that in Control Panel?

    Thanks
  • Mark.B
    vBulletin Support
    • Feb 2004
    • 24287
    • 6.0.X

    #2

    You would need to add the following to your custom css (Edit Site > Style > CSS Editor):
    Code:
    .forum-list-container .subforum-list .subforum-header {
    display:none;
    }
    MARK.B
    vBulletin Support
    ------------
    My Unofficial vBulletin 6.0.0 Demo: https://www.talknewsuk.com
    My Unofficial vBulletin Cloud Demo: https://www.adminammo.com

    Comment

    • Wayne Luke
      vBulletin Technical Support Lead
      • Aug 2000
      • 74132

      #3
      You can adjust the existing CSS to remove some of the whitespace as well.

      Code:
      .forum-list-container .subforum-list .subforum-header {
          font-weight: bold;
          margin-bottom: 10px;
          margin-top: -6px;
      }
      Translations provided by Google.

      Wayne Luke
      The Rabid Badger - a vBulletin Cloud demonstration site.
      vBulletin 5 API

      Comment

      • xwang18
        New Member
        • Mar 2008
        • 19
        • 3.6.x

        #4
        That worked. Thanks a lot!

        Comment

        Related Topics

        Collapse

        Working...