in english.lng, u'll see something like this:
if ($MenuType == 1)
{
$menusep = ' | ';
$img['admin'] = $txt[2];
$img['delete'] = $txt[31];
$img['email'] = $txt[69];
$img['email_sm'] = $txt[69];
$img['help'] = $txt[119];
...
}
else
{
$menusep = ' ';
$img['admin'] = '<img src="' . $imagesdir . $langimages . '/admin.gif" alt="' . $txt[2] . '" title="' . $txt[2] . '" border="0" />';
$img['delete'] = '<img src="' . $imagesdir . $langimages . '/delete.gif" alt="' . $txt[121] . '" title="' . $txt[121] . '" border="0" />';
$img['email'] = '<img src="' . $imagesdir . $langimages . '/email.gif" alt="' . $txt[69] . '" title="' . $txt[69] . '" border="0" />';
$img['email_sm'] = '<img src="' . $imagesdir . '/email_sm.gif" alt="' . $txt[69] . '" title="' . $txt[69] . '" border="0" />';
$img['help'] = '<img src="' . $imagesdir . $langimages . '/help.gif" alt="' . $txt[119] . '" title="' . $txt[119] . '" border="0" />';
...
}
i removed most of them because they're too long
u'll see that the name ($img[something]) is repeated in the 2nd block
the 1st block is the text version, the 2nd is image version
what u need to do is change the ones required in the menu with the text version
u'll need to change: home, help, search, profile, login, logout, register, admin, calendar & notification
the result should be like:
else
{
$menusep = ' ';
$img['admin'] = $txt[2];
$img['delete'] = '<img src="' . $imagesdir . $langimages . '/delete.gif" alt="' . $txt[121] . '" title="' . $txt[121] . '" border="0" />';
$img['email'] = '<img src="' . $imagesdir . $langimages . '/email.gif" alt="' . $txt[69] . '" title="' . $txt[69] . '" border="0" />';
$img['email_sm'] = '<img src="' . $imagesdir . '/email_sm.gif" alt="' . $txt[69] . '" title="' . $txt[69] . '" border="0" />';
$img['help'] = $txt[119];
...
}
i only did the first few lines, u gotta do the rest yourself
