Increase Avatar Size vBulletinCloud

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nintenex
    Senior Member
    • Oct 2016
    • 179
    • 5.2.x

    Increase Avatar Size vBulletinCloud

    Does anyone have the CSS code for Increased Avatar sizes? One that works all around the board except the online list.
  • Mark.B
    vBulletin Support
    • Feb 2004
    • 24286
    • 6.0.X

    #2
    I don't have css that is as specific as that. I have some that will increase the avatar size in the postbit.

    Increasing the sizes in other areas, such as the forum list and threadlist, is more complicated because if you make them much bigger then they break out of their containers...meaning you have to resize those as well. I don't have any css that will do that.
    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

    • Nintenex
      Senior Member
      • Oct 2016
      • 179
      • 5.2.x

      #3
      Originally posted by Mark.B
      I don't have css that is as specific as that. I have some that will increase the avatar size in the postbit.

      Increasing the sizes in other areas, such as the forum list and threadlist, is more complicated because if you make them much bigger then they break out of their containers...meaning you have to resize those as well. I don't have any css that will do that.
      I need the postbit one, I had a working one before but i forgot where i got it from.

      Comment

      • Carrfixr
        Senior Member
        • May 2017
        • 1364
        • 5.5.x

        #4
        Try this:::




        .b-avatar--m {
        height: auto;
        width: 150px;
        }
        .b-avatar--m > img {
        max-height: 150px;
        max-width: 150px !important;
        }

        Comment

        • Nintenex
          Senior Member
          • Oct 2016
          • 179
          • 5.2.x

          #5
          Originally posted by Carrfixr
          Try this:::




          .b-avatar--m {
          height: auto;
          width: 150px;
          }
          .b-avatar--m > img {
          max-height: 150px;
          max-width: 150px !important;
          }
          Thanks for posting ill try it out now.

          Comment


          • Nintenex
            Nintenex commented
            Editing a comment
            Was hoping they'd be a much bigger, If i increase the size manually will it change? Carrfixr
        • Nintenex
          Senior Member
          • Oct 2016
          • 179
          • 5.2.x

          #6
          this is what i have in place now.
          Code:
          /* Start over-ride postbit avatar size */
          .b-avatar--m > img {
              max-height: 400px;
              max-width: 400px !important;
          }
          .b-avatar--m {
              height: 100%;
              width: 100%;
          }
          /* End over-ride postbit avatar size */
          'when i alter the 100% any higher it moves it to the right of the screen, any way i can keep it i the Center? and also making it larger, I've increased the width of the post bit for larger avatars already, maybe that's interfering perhaps?

          Comment

          Related Topics

          Collapse

          Working...