Quote:
Originally Posted by skol
Would it be possible to stop the marqee in postbit when you hover over it.
|
sorry bud I seen this when you posted it but I was busy as a mofo
go to your admincp> Plugins & Products> under plugin manager
look for ibProArcade: Crowns in Postbit
click it or click edit ...
look for
Code:
case 1:
$crowns = '<marquee width="150" scrollamount="3">';
break;
case 2:
$crowns = '<marquee width="175" name="crownscroll" scrollamount="1" direction="up" height="20">';
break
and change it to
Code:
case 1:
$crowns = '<marquee width="150" onmouseout="this.scrollAmount=3" onmouseover="this.scrollAmount=1" scrollamount="3">';
break;
case 2:
$crowns = '<marquee width="175" name="crownscroll" onmouseout="this.scrollAmount=1" onmouseover="this.scrollAmount=0" scrollamount="1" direction="up" height="20">';
break;