Quote:
Originally Posted by tommyxv
Couple of questions...
1) How can I limit the number of raffles shown in the widget. Say I only want 4.
2) How can I have the output horizontal, say 4 across?
Thanks
|
To limit the number of raffles in the widget, change this code...
Code:
$raffle_getactive = $vbulletin->db->query_read_slave("SELECT * FROM " . TABLE_PREFIX . "raffle
WHERE enddate > $timenow AND startdate <= $timenow
ORDER BY id DESC
");
To this..
Code:
$raffle_getactive = $vbulletin->db->query_read_slave("SELECT * FROM " . TABLE_PREFIX . "raffle
WHERE enddate > $timenow AND startdate <= $timenow
ORDER BY id DESC
LIMIT 4
");
So far as I know, widgets are only displayed vertically. But, you could try formatting it horizontally with a table to see if that works.