I'd want to know how I change tbl_h_c.gif images into tbl_h_c.png , cause Old Icyphoenix defined it in mg_themes.cfg, as well as tbl_h_r and tbl_h_l. But now, mg_themes.cfg just define tbl_h_r and tbl_h_l images, but not tbl_h_c.
Example:
Old Icy:
$images['tbl_h_l'] = '<table class="roundedtop" width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td width="24" align="right" valign="bottom"><img src="' . $current_template_images . 'tbl_h_l.gif" border="0" alt="" /></td>';
$images['tbl_h_c'] = '<td width="100%" align="center" valign="bottom" background="' . $current_template_images . 'tbl_h_c.gif" nowrap="nowrap">';
$images['tbl_h_r'] = '</td><td width="24" align="left" valign="bottom"><img src="' . $current_template_images . 'tbl_h_r.gif" border="0" alt="" /></td></tr></table>';
$images['tbl_h_c'] = '<td width="100%" align="center" valign="bottom" background="' . $current_template_images . 'tbl_h_c.gif" nowrap="nowrap">';
$images['tbl_h_r'] = '</td><td width="24" align="left" valign="bottom"><img src="' . $current_template_images . 'tbl_h_r.gif" border="0" alt="" /></td></tr></table>';
New Icy:
$images['tbl_h_l'] = '<table class="roundedtop" width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td width="24" align="right" valign="bottom"><img class="topcorners" src="' . $current_template_images . 'tbl_h_l.gif" alt="" /></td>';
$images['tbl_h_c'] = '<td class="roundedhc" width="100%" align="center">';
$images['tbl_h_r'] = '</td><td width="24" align="left" valign="bottom"><img class="topcorners" src="' . $current_template_images . 'tbl_h_r.gif" alt="" /></td></tr></table>';
$images['tbl_h_c'] = '<td class="roundedhc" width="100%" align="center">';
$images['tbl_h_r'] = '</td><td width="24" align="left" valign="bottom"><img class="topcorners" src="' . $current_template_images . 'tbl_h_r.gif" alt="" /></td></tr></table>';
Can u see how Old Icy shows tbl_h_c.gif image, but new one doesn't?
THX