Hi everyone,
I was wondering if you could help me with a query that I have. I use the following code to display recent forum topics on my websites home page, what I would like to know is, if it possible to have a small image appear to the left hand side of the thread title when it is rolled over? If not, is it possible for a static image to be shown in front of every post or even a bullet point?
PHP Code:
<script type="text/javascript" src="http://www.mysitename.com/forums/external.php?type=js"></script>
<script type="text/javascript">
<!--
for (var i = 0; i < threads.length; i++)
{
document.write('<a href="http://www.mysitename.com/forums/showthread.php?t=' + threads[i]['threadid'] + '">' + threads[i]['title'] + '</em><br />');
}
//-->
</script>
Any help would be greatly appreciated.