MyBB Community Forums

Full Version: PM [SOLVED]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 730201025822pm.png]

Hey everyone wanted to find out is it possible to change these icon I know there should be a way just I don't know how in the place where I am supposed to this is the current code there:
<tr>
<td align="center" class="trow1" width="1%"><img src="{$theme['imgdir']}/{$msgfolder}" alt="{$msgalt}" title="{$msgalt}" /></td>
<td align="center" class="trow2" width="1%">{$icon}</td>
<td class="trow1" width="35%">{$msgprefix}<a href="private.php?action=read&amp;pmid={$message['pmid']}">{$message['subject']}</a>{$msgsuffix}{$denyreceipt}</td>
<td align="center" class="trow2">{$tofromusername}</td>
<td class="trow1" align="right" style="white-space: nowrap"><span class="smalltext">{$senddate} {$sendtime}</span></td>
<td class="trow2" align="center"><input type="checkbox" class="checkbox" name="check[{$message['pmid']}]" value="1" /></td>
</tr>
I just want to change them from gif to png can anyone help me Big Grin
<img src="{$theme['imgdir']}/{$msgfolder}" alt="{$msgalt}" title="{$msgalt}" />

change to

<img src="{$theme['imgdir']}/imagename.png" alt="{$msgalt}" title="{$msgalt}" />
(2010-07-30, 10:07 PM)N.Malcolm Wrote: [ -> ]<img src="{$theme['imgdir']}/{$msgfolder}" alt="{$msgalt}" title="{$msgalt}" />

change to

<img src="{$theme['imgdir']}/imagename.png" alt="{$msgalt}" title="{$msgalt}" />

No. This will make all the icons the same.

Change it to
<img src="{$theme['imgdir']}/{$msgfolder}.png" alt="{$msgalt}" title="{$msgalt}" />
and name all of the icons new_pm.gif.png ,old_pm.gif.png, etc.
Works thanks a lot Big Grin