Frequently Asked Questions

Arrange icons by size?

I use different sized icons. Is it possible to display the buttons in order of size?

Open up your category.php and find this line:

$result = mysql_query("SELECT * FROM $table_link WHERE relCatID=$id ORDER BY name ASC");

and change it to this:

$result = mysql_query ("SELECT * FROM $table_link WHERE relCatID=$id ORDER BY width, height, name ASC");