Find a file called tpl_modules_attributes.php (includes/templates/yourtemplate/templates/) and look for the bit that is like this:
Code:
<div class="wrapperAttribsOptions">
<h4 class="optionName back"><?php echo $options_name[$i]; ?></h4>
<div class="back"><?php echo "\n" . $options_menu[$i]; ?></div>
<br class="clearBoth" />
</div>
Now you want to add a bit in so you get:
Code:
<div class="wrapperAttribsOptions">
<h4 class="optionName back"><?php echo $options_name[$i]; ?></h4>
<p class="optionLink">
<?php if ($options_name[$i]=='Color'){
echo'put the link here';
};
?>
<div class="back"><?php echo "\n" . $options_menu[$i]; ?></div>
<br class="clearBoth" />
</div>
You need to adjust the word 'Color' to match the name of your font option. Check it is working at this point by uploading. You should see the words 'Put the link here' where the link should go. If you see nothing it might be because you have got the option name wrong (caps maybe)
Then you can put your link instead of the words 'Put the link here'. Use double quotes in your link rather than single quotes so as not to confuse the php pixies. So that line might read:
Code:
echo'<a href="../Desktop/Mango
Sailing/Calendar_mar.htm">
<img src="../images/aldos daves 319.jpg">
</a>';
But obviously with your own images and paths