Im trying to add the title for each of the icons like compose, reply etc etc under the correct image
so far I've been able to show text but its not within the link
<a href="./?_task=mail&_action=compose" onclick="return rcmail.command('compose','',this)" onmousedown="return rcmail.button_sel('compose','rcmbtn104')" onmouseup="return rcmail.button_out('compose','rcmbtn104')" title="Create a new message"><img src="skins/default/images/buttons/compose_pas.png" id="rcmbtn104" border="0" alt="" /></a><br />Create Mail</div>
I need to be able to get it to output

Create Mail
I presume this would need editing:
Does anyone know if this is possible
Many thanks
After some searching I've managed to sort this
For anyone who would like to do the same all you need to do is enter
label="forwardmessage"
replace "forwardmessage" with whatever text you want displayed
Thanks Dave.
This is a feature quite often requested for.
Could you specify which are the files that need editing.
Regards
kmn
Sorry for the rather delayed post the files you need to edit are html template files for example compose.html and find the buttons etc
<roundcube:button command="send" imageSel="/images/buttons/send_sel.png" imageAct="/images/buttons/send_act.png" imagePas="/images/buttons/send_pas.png" label="customlabel" title="sendmessage" />
Then you need to go to the localization dir select your language dir and open labels.inc and add your custom label
$labels['customlabel'] = 'Custom Label';
Hope this helps