Topic List - Change Font Size?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • interfx
    Senior Member
    • Dec 2001
    • 737
    • 4.2.X

    [vB5] Topic List - Change Font Size?

    I've been looking in the Style Variable Editor, and can not seem to figure out which of the style variables controls the font size of the list of Topics/Threads inside of a Forum.

    For example, trying to increase the size of "AndresBul welcome to the site", and not the "Started by..."

    AndresBull welcome to the site
    Started by abc, 09-27-2016, 01:55 AM

    Which variable is this?

    Thanks in advance -
  • Wayne Luke
    vBulletin Technical Support Lead
    • Aug 2000
    • 73981

    #2
    It doesn't have a specific variable. You will have to override the CSS directly. You can put your custom CSS in the css_additional.css template.
    Translations provided by Google.

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

    Comment

    • interfx
      Senior Member
      • Dec 2001
      • 737
      • 4.2.X

      #3
      Originally posted by Wayne Luke
      It doesn't have a specific variable. You will have to override the CSS directly. You can put your custom CSS in the css_additional.css template.
      Thanks Wayne. I'm a complete newbie when it comes to modifying CSS... Any suggestion on how to do?

      Comment

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

        #4
        I will have to look at the CSS when I have time. Or maybe someone will come along and help. Usually I just inspect the element using Chrome's developer tools and backtrack until I find the least specific CSS that fits my needs.
        Translations provided by Google.

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

        Comment

        • Mark.B
          vBulletin Support
          • Feb 2004
          • 24286
          • 6.0.X

          #5
          Try this:

          Code:
          .topic-title {
          font-size: 26px;
          }
          Obviously that's way too big but you can use it as a test and manipulate the value.
          It may not be specific enough though and may change other areas you don't want it to. You'll need to test it.

          You would paste this into the CCS box in Site Builder.
          Edit Site > Style > Custom CSS
          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

          • interfx
            Senior Member
            • Dec 2001
            • 737
            • 4.2.X

            #6
            That worked great! Thanks Mark for assisting...

            Originally posted by Mark.B
            Try this:

            Code:
            .topic-title {
            font-size: 26px;
            }
            Obviously that's way too big but you can use it as a test and manipulate the value.
            It may not be specific enough though and may change other areas you don't want it to. You'll need to test it.

            You would paste this into the CCS box in Site Builder.
            Edit Site > Style > Custom CSS

            Comment

            Related Topics

            Collapse

            Working...