Quote:
Originally Posted by stangger5
If you want scrolling but not the '%GAME% Champ!'
Try this..
Plugin Manager >> ibProArcade: Crowns in Postbit
Find this,
Code:
$crowns .=$this_game[gtitle]." Champion!</a> " . $crown_end;
Change to,
Code:
$crowns .= "</a> ";
|
Dude, where were you, like, thirty minutes ago? LOL This much simpler.
I managed to finagle something, but no where near as simple. Obviously, I like yours better.
I edited this:
PHP Code:
case 3:
$crowns = '';
break;
}
to this
PHP Code:
case 3:
$crowns = '<marquee width="175" height="20" scrollamount="1">';
break;
and took out the <br /> in this
PHP Code:
foreach ($champs["$post[userid]"] AS $this_game)
{
if ($crown['type'] == 3)
{
if ($counter == 5)
{
$counter = 0; $crowns.= "<br />";
}
I guess mine wasn't that big a deal, but with mine I had to leave the
Postbit Display Style set to
Icons Only. I didn't particularly care for that. Thanks greatly.
And if you want to adjust the speed, direction or height/width of the marquee, just go to Case 1 or Case 2 and edit the <marquee> tags accordingly:
PHP Code:
case 1:
$crowns = '<marquee width="120" scrollamount="3">';
break;
case 2:
$crowns = '<marquee width="175" name="crownscroll" scrollamount="1" direction="up" height="20">';
break;
</SPAN>