MyBB Community Forums

Full Version: img with link?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi guyse, how do i add a small icon next to a link using html as i want to to add some to my links on forum?

heres code at the mo im using for just the text link:

<a href="http://www.carpinmad.co.uk/forum/files/image_converter.exe">Image Converter</a>

but want to add just a small icon to it so it shows up like the ones for members list & calander etc that have little pics infront?

thanks

<img src="http://url.com"><a href="http://link.com">Image Converter</a>
thanks Smile
ok added it but it not quite aligned:

http://www.carpinmad.co.uk/forum/index.php if you look at my side box where it says "tools" you see what i mean its just out a little & would like a space between the image & link if thats poss?
done it Smile

this code allows you to put a link in a side box with an icon Smile

<table border="0" cellspacing="1" cellpadding="4" class="tborder">
<tr>
<td class="thead">
<strong><div align=center>Tools</div></strong>
</td>
</tr>
<tr>
<td class="trow1">
<div align=center>
<img src="url_of_icon" style="vertical-align:middle;">&nbsp;<a href="url_of_link">Image Converter</a>
</div>
</td>
</tr>
</table>
<br />