Hi,
I want to place a little image next to usernames on my website which visitors can click. The image is an icon (16x16 pixels CANNOT CHANGE!) and it needs to be displayed a little lower than the text. I don't know how many characters the username will be, but the entire text+image should not be wrapped over multiple lines...
How can this be achieved?
Example (doesn't work for my requirements obviously...):
<style type="text/css">
div.userlink {height:20px;whitespace:no-wrap;}
</style>
<div class="userlink">
<span class="text">The_username_of_unknown_length</span>
<span class="image"><a href="#"><img src="/theicon.jpg" /></a></span>
</div>