Quote:
Originally Posted by LEAD_WEIGHT
This code I know it makes a space & only works in IE.
Code:
<div style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;">username</div>
Code:
<table style="filter:glow(color=red, strength=4)">username</table>
|
Whatever you are doing for glowing usernames is breaking the "title" in the link html. Nothing I can do about that.
Quote:
Originally Posted by Bacon Butty
Is there be a way to change this so users who have visited the site in the last 48 hours are displayed?
|
replace this ;
PHP Code:
//$cutoff = $now - 86400 ; // ## Uncomment this line if you want a rolling 24 hours display ## //
With this ;
PHP Code:
$cutoff = $now - 172800; // ## Rolling 48 hours display ## //