@garciat how do i need to change this part
<hook id="ps_do_smilies_start"><![CDATA[
//this makes the smilies 20 instead of 15 in width and height
$text = ' '.$text.' ';
foreach ($smilies as $smiley_text => $smiley_img)
{
if (strpos($text, $smiley_text) !== false)
$text = preg_replace("#(?<=[>\s])".preg_quote($smiley_text, '#')."(?=\W)#m", '<img src="'.$base_url.'/img/smilies/'.$smiley_img.'" width="20" height="20" alt="'.substr($smiley_img, 0, strrpos($smiley_img, '.')).'" />', $text);
}
]]></hook>
with your code
<hook id="he_new_section">
if ($section == 'smilies')
{
$temp = forum_trim(ob_get_contents());
ob_end_clean();
echo str_replace('width="15" height="15" ', '', $temp);
}
</hook>
help shows the smilies at there real size.... but not in posts or in pun_bbcode
do I need to do that echo str_replace anywhere else? or what could be problem... ?
i have one that is 18x31 and it just gets squashed (except in help where it shows correctly)