Groups

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Amaury
    Senior Member
    • Mar 2012
    • 1807
    • 4.2.X

    [Forum] Groups

    I want the big text (Group Maintained By, etc.) in the content area to appear on one line, while the small text and links (username, etc.) appear underneath the big text like on profiles.

    Which group template would I edit?

    Group:
    Click image for larger version

Name:	Group.png
Views:	1
Size:	221.8 KB
ID:	3724447

    I want it to look like this:
    Click image for larger version

Name:	Profile.png
Views:	1
Size:	386.0 KB
ID:	3724448
    Former vBulletin user
  • cloferba
    Senior Member
    • Apr 2009
    • 791
    • 3.8.x

    #2
    You will require custom modifications to the code. You should ask this on vBulletin.org
    vBulletin Services I offer: www.Todo10.com
    Technical vB/Server/Hosting support Service also!

    Comment

    • Amaury
      Senior Member
      • Mar 2012
      • 1807
      • 4.2.X

      #3
      Originally posted by cloferba
      You will require custom modifications to the code. You should ask this on vBulletin.org
      I'm pretty sure it would just require a template edit.

      That's how I got profiles that way, by editing the member.css template and changing the width of the dl and dd stats.
      Former vBulletin user

      Comment

      • Leinad_r
        Senior Member
        • Sep 2011
        • 235

        #4
        acp => options => General Settings => Add Template Name in HTML Comments

        then you'll see the template name in the html source code
        Not sent from my iPhone and not using any browser attaching any 3rd party advertisement to my posts

        Comment

        • Amaury
          Senior Member
          • Mar 2012
          • 1807
          • 4.2.X

          #5
          Originally posted by Leinad_r
          acp => options => General Settings => Add Template Name in HTML Comments

          then you'll see the template name in the html source code
          I'm not sure I understand...
          Former vBulletin user

          Comment

          • Merjawy
            Senior Member
            • Sep 2002
            • 2613

            #6
            socialgroups_group is where you should look in
            To be or not to be... Where the hell is the question????
            My psychiatrist told me I was crazy and I said I want a second opinion. He said okay, you're ugly too

            Live vBulletin 4.2.0 Multilingual * Alpha/Beta vB 4 - vB 5 Tier 1A
            CentOS 6.2 - Apache:2.2.15(Apache2Handler) - PHP:5.3.3 - MySQL:5.1.61
            Xampp/Win-XP - Apache v2.2.21(Apache2Handler) - PHP:5.3.8 - MySQL:5.5.16

            Comment

            • Amaury
              Senior Member
              • Mar 2012
              • 1807
              • 4.2.X

              #7
              Originally posted by Merjawy
              socialgroups_group is where you should look in
              What would I change?

              I tried looking for something similar from the member.css template, which was this:

              Code:
              .member_summary dl.stats dt {
                  width: [B]200px[/B];
                  display:block;
                  float: {vb:stylevar left};
                  clear: {vb:stylevar right};
              }
              
              .member_summary dl.stats dd {
                  float: {vb:stylevar left};
                  clear:{vb:stylevar right};
                  display:block;
                  width: {vb:math {vb:stylevar profile_sidebar_width}-[B]0px[/B]-{vb:math {vb:stylevar sidebar_content_border}*2}-12px-20px};
                  margin-left: 8px;
              }
              The bold areas are 85px by vBulletin default.

              However, I couldn't find anything like that in that group template.
              Former vBulletin user

              Comment

              • Merjawy
                Senior Member
                • Sep 2002
                • 2613

                #8
                Try this in additional.css I hope this is what you needed. Edit the code as you see fit.

                PHP Code:

                #groupstats dl.stats dt {
                    
                clearright;
                    
                color#99FF33;
                    
                displayblock;
                    
                floatleft;
                    
                text-alignleft;
                    
                width100%;
                }

                #groupstats dl.stats dd {
                    
                displayblock;
                    
                floatright;
                    
                font-weightbold;
                    
                text-alignleft;
                    
                width100%;

                To be or not to be... Where the hell is the question????
                My psychiatrist told me I was crazy and I said I want a second opinion. He said okay, you're ugly too

                Live vBulletin 4.2.0 Multilingual * Alpha/Beta vB 4 - vB 5 Tier 1A
                CentOS 6.2 - Apache:2.2.15(Apache2Handler) - PHP:5.3.3 - MySQL:5.1.61
                Xampp/Win-XP - Apache v2.2.21(Apache2Handler) - PHP:5.3.8 - MySQL:5.5.16

                Comment

                • Amaury
                  Senior Member
                  • Mar 2012
                  • 1807
                  • 4.2.X

                  #9
                  Originally posted by Merjawy
                  Try this in additional.css I hope this is what you needed. Edit the code as you see fit.

                  PHP Code:

                  #groupstats dl.stats dt {
                      
                  clearright;
                      
                  color#99FF33;
                      
                  displayblock;
                      
                  floatleft;
                      
                  text-alignleft;
                      
                  width100%;
                  }

                  #groupstats dl.stats dd {
                      
                  displayblock;
                      
                  floatright;
                      
                  font-weightbold;
                      
                  text-alignleft;
                      
                  width100%;

                  Worked, thanks.
                  Former vBulletin user

                  Comment

                  • Merjawy
                    Senior Member
                    • Sep 2002
                    • 2613

                    #10
                    You're welcome
                    To be or not to be... Where the hell is the question????
                    My psychiatrist told me I was crazy and I said I want a second opinion. He said okay, you're ugly too

                    Live vBulletin 4.2.0 Multilingual * Alpha/Beta vB 4 - vB 5 Tier 1A
                    CentOS 6.2 - Apache:2.2.15(Apache2Handler) - PHP:5.3.3 - MySQL:5.1.61
                    Xampp/Win-XP - Apache v2.2.21(Apache2Handler) - PHP:5.3.8 - MySQL:5.5.16

                    Comment

                    Related Topics

                    Collapse

                    Working...