Quote:
Originally Posted by nhawk
If you've made the css changes, the only part you need to change is the avatar section of your code..
|
And that is all I changed.
Quote:
Find this..
Code:
<center><if condition="$show['avatar']">
<div class="smallfont">
<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if></center>
And replace with this..
Code:
<center><if condition="$show['avatar']">
<div class="smallfont">
<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img class="roundedav" src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if></center>
|
Thank you, this now works. I will note in passing you merely omitted the td class=alt2 from the code originally supplied. What exactly was the purpose of it to start with?