YAFLogo

RichP714
  • RichP714
  • 100% (Exalted)
  • YAF All-the-Time Topic Starter
13 years ago
I think I used to know this, but can't figure it....anyone?
Enjoy!

Running YAF 1.9.5.5 final at: http://thecarversite.com 

Sponsor
Zero2Cool
  • Zero2Cool
  • 100% (Exalted)
  • YAF Leader YAF Version: YAF 3.1.16
13 years ago

I think I used to know this, but can't figure it....anyone?

Originally Posted by: RichP714 

Going by what I see on this theme, it's full width with the user box. If it's theme based, I'd assume you could modify it via the CSS or maybe under the template tab in Host Settings.

RichP714
  • RichP714
  • 100% (Exalted)
  • YAF All-the-Time Topic Starter
13 years ago

I think I used to know this, but can't figure it....anyone?

Originally Posted by: Zero2Cool 

Going by what I see on this theme, it's full width with the user box. If it's theme based, I'd assume you could modify it via the CSS or maybe under the template tab in Host Settings.

Originally Posted by: RichP714 

I can change the width of the userbox, and I can change the width of the div.section (that contains the medal area) but the medals themselves will only populate a certain width of the div.

We have large medals, and currently three to a row; there's room in the userbox to fit four, but I can't figure it.


Enjoy!

Running YAF 1.9.5.5 final at: http://thecarversite.com 

logan
  • logan
  • 100% (Exalted)
  • YAF Leader
13 years ago
In YAF.CONTROLS Userbox.cs you will need to change the value to 4

you will need to rebuild and update the YAF.CONTROLS DLL

approx line 618


 // skip hidden medals
          if (!f.AllowHiding || !SqlDataLayerConverter.VerifyBool(r["Hide"]))
          {
            if (inRow == 3)// Change to 4
            {
              // add break - only three ribbons in a row
              ribbonBar.Append("<br />");
              inRow = 0;
            }

test