heh. just missing something in the code. for the postbit_ip template
this code
HTML Code:
<if condition="$show['ip']">
$vbphrase[ip]: $post[ip]
<else />
<a href="postings.php?$session[sessionurl]do=getip&p=$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/ip.gif" alt="$vbphrase[ip]" title=" IP: $post[ip]
Alt IP: $post[altip]
Agent: $post[useragent] " border="0" />
</if>
is missing a </a>
should be
HTML Code:
<if condition="$show['ip']">
$vbphrase[ip]: $post[ip]
<else />
<a href="postings.php?$session[sessionurl]do=getip&p=$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/ip.gif" alt="$vbphrase[ip]" title=" IP: $post[ip]
Alt IP: $post[altip]
Agent: $post[useragent] " border="0" /></a>
</if>
Nothing major, just cased the Img to have an underline underneath it.