Zen Cart Logo
Forums / Basic Configuration / 3 Little Fixes

3 Little Fixes

Locked

Views: 1,240

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
15 Aug 2008, 8:29 AM
#1
dieuxsoldat_04 avatar

dieuxsoldat_04

Zen Follower

Join Date:
Jan 2008
Location:
Southern California Coast
Posts:
174
Plugin Contributions:
0

3 Little Fixes

Hey Zen Community,

I have 3 little issues that I can't seem to fix. Side-boxes are pure evil for me, heh. Just wondering if you folks can lend me a quick hand since it's hitting 2 AM and I still haven't figured it out.

The issue I hate the most, the Authorize.net Side-box. The side-box is located at the bottom right of this page, Click Here. I changed the header name and named it "Services and Security" and I'm trying to add the "Shipping" image. I tried including the extra image in content and it does same thing as putting it after content. Here are the codes I tried.

$content .= ' <!-- (c) 2005, 2008. Authorize.Net is a registered trademark of CyberSource Corporation --> <div class="AuthorizeNetSeal"> <script type="text/javascript" language="javascript">var ANS_customer_id="50453aee-4174-4105-9e56-d766c8f78853";</script> <script type="text/javascript" language="javascript" src="//verify.authorize.net/anetseal/seal.js" ></script> <a href="http://www.authorize.net/" id="AuthorizeNetText" target="_blank">Online Payments</a> </div>  ';
?>
<div align="center"><img src="http://endlesssonata.com/catalogue/images/shipping.jpg" alt="Shipping" /></div>
```and


$content .= ' <!-- (c) 2005, 2008. Authorize.Net is a registered trademark of CyberSource Corporation --> <div class="AuthorizeNetSeal"> <script type="text/javascript" language="javascript">var ANS_customer_id="50453aee-4174-4105-9e56-d766c8f78853";</script> <script type="text/javascript" language="javascript" src="//verify.authorize.net/anetseal/seal.js" ></script> <a href="http://www.authorize.net/" id="AuthorizeNetText" target="_blank">Online Payments</a> </div>
<img src="http://endlesssonata.com/catalogue/images/shipping.jpg" alt="Shipping" /> ';
?>


Last little issue is just the accepted payment side-box on the bottom left. I want the images centered and to have 10 px space in each direction. The install guide said to use this CSS code:

#ccacceptContent {
text-align:center;
padding:10px 20px;
line-height:1.5em;
}


So those are my three little issues. Sorry if they are easy fixes, I'm not too familiar with PHP. No idea how I even made it this far, heh.

Thank!
Warm Regards,
Jason H.
23 Aug 2008, 12:34 PM
#2
dieuxsoldat_04 avatar

dieuxsoldat_04

Zen Follower

Join Date:
Jan 2008
Location:
Southern California Coast
Posts:
174
Plugin Contributions:
0

Re: 3 Little Fixes

Got most of the problems fixed. Right now only one problem remains, how do I get the Authorize.net Sidebox to be able to show the shipping image and other images in the future?