ZC 157c

I am trying to get the record companies image to appear at the bottom of product pages. It would be centered with a place to put a sentence or two to the right of the label image.

Using the following code, that I took from part of a code from post #11 from this thread: https://www.zen-cart.com/showthread....t=artist+image


PHP Code:
<!--bof record company url and image -->
<?php
if (zen_not_null($products_record_company_url)) {
if (
$flag_show_product_music_info_record_company == 1) {
?>
<p id="productInfoLink" class="productMusic centeredContent">For more information, you can visit the <a href=<?php echo sprintf(TEXT_RECORD_COMPANY_URLzen_href_link(FILENAME_REDIRECT'action=url&goto=' urlencode($products_record_company_url), 'NONSSL'truefalse)); ?> >webpage</a> of manufacturer.</p>
<?php
}// $flag_show_product_info_record_company
}
?>
<?php 
echo sprintf('<a href="' TEXT_RECORD_COMPANY_URLzen_href_link(FILENAME_REDIRECT'action=url&goto=' urlencode($products_record_company_url), 'NONSSL'truefalse) . '">' zen_image(DIR_WS_IMAGES $record_company->fields['record_company_image']) . '</a>'); ?>
And that gives me this, which you can see at the bottom of this page. https://fuzztrip.com/lp-c-1/bonzai-s...-lp-p-215.html

Click image for larger version. 

Name:	Capture.jpg 
Views:	562 
Size:	22.2 KB 
ID:	19673

So, I would need text in the red and would like the image to link to https://fuzztrip.com/index.html?type...company_id=119 (or whatever the ID is).

This is beyond my ability and any push in the right direction would be great. Thanks!