Add this to your class.
.smileycode { display:block; }
This will transform you into block level elements and force them to move to the next line.
Hope this is what you are looking for.
EDIT
If you want the text to look like an inscription just below the image, you can use display:table-caption;
to achieve this.
The following is a working example.
Demo
CSS:
.smileycode{display:table-caption;}
Hope this helps.
source share