Im trying to apply an image to a button link, that takes you to Amazon on the Ja_Appolio template I have the button css image in a stylesheet called amazon_button, which is also the button class. The code for the button in the php com_content article document is
<?php if($exts[‘amazonsell’]):?>
<a class=”btn btn-source btn-buy” href=”<?php echo $exts[‘amazonsell’];?>”><?php echo JText::_(‘TPL_BUY_ON_AMAZON’); ?></a>
<?php endif;?>
This button code does work by clicking (‘TPL_BUY_ON_AMAZON’). How do you apply the button image stylsheet to this code, so that the image shows instead of the text.? Any help or ideas is appreciated.