GUI Formatting Problem

Hi,
In OnGUI, how do I create a box that displays the lives a user has left? For example 5x [Image of a heart here]
I tried GUI.Box(new Rect (235, 10, 115, 30), GUIContent(lifePic, “hello”), myGUIStyle); but this places the image on the left of the text when i want it on the right. Is there no way to change this?
Thanks in advance for your time.

You will probably have to place each element separately:

GUI.Box(new Rect (235, 10, 115, 30), "",myGUIStyle);
GUI.Label(new Rect (275, 14, 115, 30), "5x",myGUIStyle);
GUI.Label(new Rect (292, 10, 115, 30), lifePic);