@kevo - I myself had this problem...In the vBulletin Options, be sure to read what Value you are setting for Height and Width restrictions...
If you do not want restrictions, just set them both to something like 900
@DarkDraco - This is untested, but:
Open forum/global.php
Find:
Code:
$affillink = $DB_site->query_first("SELECT linkid,name,link,b_link,height,width FROM vbaffiliates WHERE moderated='1' ORDER BY RAND() LIMIT 1");
Replace with:
Code:
$affillink = $DB_site->query_first("SELECT linkid,name,link,b_link,height,width FROM vbaffiliates WHERE moderated='1' ORDER BY RAND() LIMIT X");
Change the
X to a value you want to show...I wouldn't recommend more than 3...
Satan