Quote:
Originally Posted by Greek76
How do you resize the image to something smaller? The images come out huge. Where do I edit the settings.
|
The best way would be to apply the sizes in the template edits like so:
Code:
<if condition="$show['threadicons']">
<td class="alt2">
<if condition="$show['threadicon']">
<img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" width="80" height="80" border="0" />
<else />
</if>
</td>
</if>
and...
Code:
<if condition="$show['threadicons']">
<td class="alt2" align="center" valign="middle">
<if condition="$tt_displaythumbs">
<if condition="($thread['attachmentid']) AND ($thread['thumbsize'])">
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]">
<img src="attachment.php?attachmentid=$thread[attachmentid]&stc=1&thumb=1" alt="" border="0" width="80" height="80" />
</a>
<else />
<img src="$stylevar[imgdir_misc]/nothumb.jpg" alt="" border="0" width="80" height="80" />
</if>
<else />
<if condition="$show['threadicon']">
<img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" width="80" height="80" />
</if>
</if>
Just edit the numeric values that are in red and replace them with a pixel size that suits your forum.
I've not tried this yet, so if someone does, and it doesn't work, let me know. ><