activity system text is over avatars???

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • masterross
    Senior Member
    • Nov 2005
    • 525
    • 4.2.5

    [Forum] activity system text is over avatars???

    Hi,

    When I installed v4.2 activity system text is shown over the avatars (180px x 180px).
    If the avatar is smaller no prob but with height more than 100px the text is over the avatar.

    Is this a bug?
    Latest Tech News in the World
    Кейс със снимка по поръчка
  • Stallyon
    Senior Member
    • Mar 2005
    • 636
    • 4.2.X

    #2
    It's not an error in your style? Try reverting to the default vBulletin style. I can't seem to get mine to do this and my avatars are 120 x 120.
    A computer without Microsoft Windows is like a chocolate cake without mustard.
    vBulletin user since March 2004, joined forum a year later, migration from vBulletin began April 2013. After 6 years of negativity, even old die-hard fans lose faith.

    Comment

    • Ace
      Senior Member
      • Apr 2004
      • 4051
      • 4.2.X

      #3
      Try rebuilding the avatar thumbnails in AdminCP - Maintenance - General
      My Live vB5 Site - NZEating.com
      vBulletin Hosting | vBulletin Services - Need hosting for your vB? Need it installed? Something else? Let me take that hassle off your hands.

      Comment

      • masterross
        Senior Member
        • Nov 2005
        • 525
        • 4.2.5

        #4
        Found the problem.
        It's a bug!

        Go to activitystream.css
        Find
        Code:
        li.activitybit .avatar {
            float: left;
            padding-right: 10px;
            width: 75px;
        Remove:

        width: 75px;

        Goin to report the issue.
        Latest Tech News in the World
        Кейс със снимка по поръчка

        Comment

        • Stallyon
          Senior Member
          • Mar 2005
          • 636
          • 4.2.X

          #5
          Maybe set it as min-width instead?
          A computer without Microsoft Windows is like a chocolate cake without mustard.
          vBulletin user since March 2004, joined forum a year later, migration from vBulletin began April 2013. After 6 years of negativity, even old die-hard fans lose faith.

          Comment

          • masterross
            Senior Member
            • Nov 2005
            • 525
            • 4.2.5

            #6
            Actually IB wants to force us to use thumbnails - 60x60px.
            But I dont want to, so it's up to you how to fix it
            Latest Tech News in the World
            Кейс със снимка по поръчка

            Comment

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

              #7
              Originally posted by masterross
              Found the problem.
              It's a bug!

              Go to activitystream.css
              Find
              Code:
              li.activitybit .avatar {
                  float: left;
                  padding-right: 10px;
                  width: 75px;
              Remove:

              width: 75px;

              Goin to report the issue.
              Not really a bug. More of an issue with you using oversized avatars. The bug would be that the CSS doesn't resize your large avatars down to something that fits the layout.
              Translations provided by Google.

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

              Comment

              • masterross
                Senior Member
                • Nov 2005
                • 525
                • 4.2.5

                #8
                Thx Wayne,

                Actually there is other bug which leads to this.
                I've described here:
                Latest Tech News in the World
                Кейс със снимка по поръчка

                Comment

                • TheLastSuperman
                  Senior Member
                  • Sep 2008
                  • 1799

                  #9
                  Originally posted by Stallyon
                  Maybe set it as min-width instead?
                  or max instead:


                  Code:
                  li.activitybit .avatar {
                       float: left;
                       padding-right: 10px;
                       max-width: 75px;
                       max-height: 75px;


                  Former vBulletin Support Staff
                  Hacked recently? See my blog post "Recovering a Hacked vBulletin Site".
                  Thinking outside the box? Need modification support? Visit www.vBulletin.org and have at it!

                  Comment

                  • Stallyon
                    Senior Member
                    • Mar 2005
                    • 636
                    • 4.2.X

                    #10
                    Originally posted by TheLastSuperman
                    or max instead:


                    Code:
                    li.activitybit .avatar {
                         float: left;
                         padding-right: 10px;
                         max-width: 75px;
                         max-height: 75px;
                    Yeah, that's the one.
                    A computer without Microsoft Windows is like a chocolate cake without mustard.
                    vBulletin user since March 2004, joined forum a year later, migration from vBulletin began April 2013. After 6 years of negativity, even old die-hard fans lose faith.

                    Comment

                    • mbooth
                      New Member
                      • Aug 2009
                      • 15
                      • 3.7.x

                      #11
                      Just so anyone new to vb4 doesnt pull their hair out searching for how....

                      To edit activitystream.css, it's actually in Style Manager > {Select Style}/Edit Templates > CSS Templates > ActivityStream.css

                      Comment

                      • TheLastSuperman
                        Senior Member
                        • Sep 2008
                        • 1799

                        #12
                        Originally posted by Michael Miller
                        or max instead:


                        Code:
                        li.activitybit .avatar {
                             float: left;
                             padding-right: 10px;
                             max-width: 75px;
                             max-height: 75px;
                        Originally posted by mbooth
                        Just so anyone new to vb4 doesnt pull their hair out searching for how....

                        To edit activitystream.css, it's actually in Style Manager > {Select Style}/Edit Templates > CSS Templates > ActivityStream.css
                        Which is the proper template to edit HOWEVER upon a future upgrade that template *may not* merge properly Or the customization lost therefor place this in additional.css, you can further ensure it's going to overwrite by adding in !important to the definition IF it's simply not "taking" here is an example:

                        Code:
                        li.activitybit .avatar {
                             float: left !important;
                             padding-right: 10px !important;
                             max-width: 75px !important;
                             max-height: 75px !important;


                        Former vBulletin Support Staff
                        Hacked recently? See my blog post "Recovering a Hacked vBulletin Site".
                        Thinking outside the box? Need modification support? Visit www.vBulletin.org and have at it!

                        Comment

                        Related Topics

                        Collapse

                        Working...