Quote:
Originally Posted by magicman17
|
Here is the original code:
Code:
<if condition="$post[field6X]">
<a href="http://auctionfb.com/click.php?user=$post[field6]" target="_blank">
<img src="http://auctionfb.com/feedback.php?user=$post[field6]" border="0">
</a>
Now simply add in a width & height attribute in the code:
Code:
<if condition="$post[field6X]">
<a href="http://auctionfb.com/click.php?user=$post[field6]" target="_blank">
<img src="http://auctionfb.com/feedback.php?user=$post[field6]" width="50" height="50" border="0">
</a>
You might have to add px behind the 50 i.e. 50px or you can even use 100% instead of 50%
I'm @ work now so not tested but it should be something simple
Also UKBL, when you have a spare moment update your install or FEEDBACK.txt instructions to add the end if tag i.e.
Currently:
Code:
<if condition="$post[field6X]">
<a href="http://auctionfb.com/click.php?user=$post[field6]" target="_blank">
<img src="http://auctionfb.com/feedback.php?user=$post[field6]" border="0">
</a>
Needs to be:
Code:
<if condition="$post[field6X]">
<a href="http://auctionfb.com/click.php?user=$post[field6]" target="_blank">
<img src="http://auctionfb.com/feedback.php?user=$post[field6]" border="0">
</a></if>