Hola everyone 
Today we decided to do some aesthetic changes to the forum, and the post icons were our first victims
For a proof of concept test we added some new icons, and the result is what you see in the attachment.
However, we haven't implemented this yet for two reasons:
1. As you can see, the last post icon, the one for Sniper Elite, which is a 15x15 default icon (versus the new 32x32 ones) isn't centered in the cell. How can we correct this? We tried using an align="center" in the forumdisplay template, here:
... and in the threadbit template, here:
... but the default icon is still aligned to the left 
2. We don't know how to remove the post icons from the forum index page. We looked in the Forumhome template, but didn't find any entry for ['threadicons']
Any suggestions on how to circumvent these problems will be greatly appreciated.

Today we decided to do some aesthetic changes to the forum, and the post icons were our first victims

For a proof of concept test we added some new icons, and the result is what you see in the attachment.
However, we haven't implemented this yet for two reasons:
1. As you can see, the last post icon, the one for Sniper Elite, which is a 15x15 default icon (versus the new 32x32 ones) isn't centered in the cell. How can we correct this? We tried using an align="center" in the forumdisplay template, here:
Code:
<if condition="$show['threadicons']"> <td class="thead" [COLOR=Red]align="center"[/COLOR] colspan="2"> </td> <else />
Code:
<if condition="$show['threadicons']"> <td class="alt2"><if condition="$show['threadicon']"><img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" [COLOR=Red]align="center"[/COLOR]/><else /> </if></td> </if>

2. We don't know how to remove the post icons from the forum index page. We looked in the Forumhome template, but didn't find any entry for ['threadicons']

Any suggestions on how to circumvent these problems will be greatly appreciated.
Comment