Frequently Asked Questions
Arrange icons by size?
-
Arrange icons by size?
Posted on May 21, 2004
Written by
Sasha (view more by Sasha)
Filed under FAQ, Flinx: Customize, Scripts
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");