Thanks for sharing that information, since there aren't any descriptions on how to do things in threads new admins just have to guess. This will probably be appreciated.<br /><br />The imagesize is set in the file imagesizes.php in the threads directory. The following lines (at 56 and 57) sets the size of the icons:<br /><pre><font class="small">code:</font><hr>// $images['icons'] = $size['3'];<br /> $images['icons'] = "width=\"15\" height=\"15\"";</pre><hr><br /><br />You can change the width and height settings on the second of those lines if you know what they are. Otherwise, change the lines to this:<br /><pre><font class="small">code:</font><hr> $images['icons'] = $size['3'];<br />// $images['icons'] = "width=\"15\" height=\"15\"";</pre><hr><br /><br />Which will set the size according to the size of the book.gif icon. Unfortunately, all icons has to be the same size.<br />If you want the icons to show up in their correct size you could change the above mentioned lines into this:<br /><pre><font class="small">code:</font><hr>// $images['icons'] = $size['3'];<br />// $images['icons'] = "width=\"15\" height=\"15\"";<br /> $images['icons'] = ""</pre><hr><br /><br />I haven't tested it, but I think it should work.