Well, it works just fine! Thank you.
Printable View
Have followed Clyde Jones advice and successfully added a sidebox with a logo...
one question...
what is the additional code/how do I center the logo within the sidebox?
Hey, Clyde help me on this try this post:
http://www.zen-cart.com/forum/showpo...&postcount=121
My featured products (always three) are in a sidebox under that heading.
I can only fit two not three... how can I make the sidebox higher?? I thought they were dynamic?
www.creationsdelphine.com/catalogue
Thanks
Works fine thanks
I can't get this to work in the sidebox.I need to put the logo for paypal in it and this is the verifying link.Quote:
http://<!-- PayPal Logo --><table border="0" cellpadding="10" cellspacing="0" align="center"><tr>
<td align="center"></td></tr><tr><td align="center"><a href="#" onclick="javascript:window.open
('https://www.paypal.com/us/cgi-bin/webscr?cmd=xpt/Marketing/popup/OLCWhatIsPayPal-outside','olcwhatispaypal','toolbar=no,
location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=400, height=350');">
<img src="https://www.paypal.com/en_US/i/bnr/vertical_solution_PPeCheck.gif" border="0" alt="Solution Graphics">
</a></td></tr></table><!-- PayPal Logo -->/');
Thanks for any help you can give.
That is the link information that is listed on PayPal for that image.
I want customers to be able to verify that I am a Verified Seller.
Have you looked at the "paypal verified logo" sidebox available in the downloads section.
I'm suggesting that because you'll need to break down the information you have so it will conform to the way the logo sidebox is set up.
in other words it needs to go into the following defines from logo sidebox:
Code:define('BOX_HEADING_LOGO_SIDEBOX', '');
//Logo number 1
define('LOGO_SIDEBOX_IMAGE_WIDTH', '125');
define('LOGO_SIDEBOX_IMAGE_HEIGHT', '125');
define('LOGO_SIDEBOX_IMAGE', 'logo_test.jpg');
define('LOGO_SIDEBOX_IMAGE_TEXT', 'My Logo');
define('LOGO_IMAGE', zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT, LOGO_SIDEBOX_IMAGE_WIDTH, LOGO_SIDEBOX_IMAGE_HEIGHT));
//this is optional if you want to use the logo as a link
//add your link information to the define statement below
//example
//define('LOGO_SIDEBOX_LINK', 'http://your_link.com/" rel="external" target="_blank"');
define('LOGO_SIDEBOX_LINK', '');
//DO NOT edit below this line
if (LOGO_SIDEBOX_LINK == '') {
define('LOGO_IMAGES', LOGO_IMAGE);
}else {
define('LOGO_IMAGES', '<a href="' . LOGO_SIDEBOX_LINK . '>' . LOGO_IMAGE . '</a>');
}