X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Help Coding a .tpl file? (https://forum.x-cart.com/showthread.php?t=53711)

mywwp 05-12-2010 01:12 PM

Help Coding a .tpl file?
 
Good afternoon,
I found some helpful information adding verification seals to my customer/bottom.tpl here in the forums, however I can not figure out how to make them show up in a row, only one on top of the other. The code is pasted below, if anyone can help it would be greatly appreciated.

Thanks in advance...
PW

{*
$Id: bottom.tpl,v 1.159.2.3 2009/11/10 15:00:56 joy Exp $
vim: set ts=2 sw=2 sts=2 et:
*}
<div class="box">
<img src="{$ImagesDir}/spacer.gif" alt="" id="left-c" />
<img src="{$ImagesDir}/spacer.gif" alt="" id="right-c" />
<div class="subbox">
<div class="left">{include file="copyright.tpl"}</div>
<div class="right">{include file="main/prnotice.tpl"}</div>
<center><!-- (c) 2005, 2010. Authorize.Net is a registered trademark of CyberSource Corporation --> <div class="AuthorizeNetSeal"> <script type="text/javascript" language="javascript">var ANS_customer_id="f5c4a65b-c8f5-44d4-9b1f-5302df967a80";</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 Payment Solution</a> </div>
<br><br>
<span id="siteseal"><script type="text/javascript" src="https://seal.starfieldtech.com/getSeal?sealID=Im2bf0RDWgcruSbK4Hp4ZF1lzY5d1lisyBV pVrV2RjdMni94Tck16E68k"></script><br/><a style="font-family: arial; font-size: 9px" href="http://www.starfieldtech.com" target="_blank">SSL Certificate</a></span>
<br><br>
<script id="siteSeal" type="text/javascript" src="//tracedseals.starfieldtech.com/siteseal/get?scriptId=siteSeal&amp;sealId=55e4ye7y7mb73cedf 7485e2b4fb3d6x51aky7mb7355e4ye72f8646b7504a224b">< /script>
<br><br>
<!-- Begin Official PayPal Seal --><a href="https://www.paypal.com/us/verified/pal=sales%40wwpwholesale%2ecom" target="_blank"><img src="https://www.paypal.com/en_US/i/icon/verification_seal.gif" border="0" alt="Official PayPal Seal"></A><!-- End Official PayPal Seal -->
</center>
</div>
</div>

Shamun 05-12-2010 03:24 PM

Re: Help Coding a .tpl file?
 
Try this:

Code:

{*
$Id: bottom.tpl,v 1.159.2.3 2009/11/10 15:00:56 joy Exp $
vim: set ts=2 sw=2 sts=2 et:
*}
<div class="box">
    <img src="{$ImagesDir}/spacer.gif" alt="" id="left-c" />
    <img src="{$ImagesDir}/spacer.gif" alt="" id="right-c" />
    <div class="subbox">
        <div class="left">{include file="copyright.tpl"}</div>
            <div class="right">{include file="main/prnotice.tpl"}</div>
                <center>
                <!-- (c) 2005, 2010. Authorize.Net is a registered trademark of CyberSource Corporation -->
                    <div class="AuthorizeNetSeal">
                        <script type="text/javascript" language="javascript">var ANS_customer_id="f5c4a65b-c8f5-44d4-9b1f-5302df967a80";</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 Payment Solution</a>
                    </div>
                    <span id="siteseal">
                        <script type="text/javascript" src="https://seal.starfieldtech.com/getSeal?sealID=Im2bf0RDWgcruSbK4Hp4ZF1lzY5d1lisyBV pVrV2RjdMni94Tck16E68k"></script>
                        <a style="font-family: arial; font-size: 9px" href="http://www.starfieldtech.com" target="_blank">SSL Certificate</a>
                    </span>
                    <script id="siteSeal" type="text/javascript" src="//tracedseals.starfieldtech.com/siteseal/get?scriptId=siteSeal&amp;sealId=55e4ye7y7mb73cedf 7485e2b4fb3d6x51aky7mb7355e4ye72f8646b7504a224b">
                    </script>
<!-- Begin Official PayPal Seal -->
                    <a href="https://www.paypal.com/us/verified/pal=sales%40wwpwholesale%2ecom" target="_blank">
                    <img src="https://www.paypal.com/en_US/i/icon/verification_seal.gif" border="0" alt="Official PayPal Seal"></A>
                </center>
    </div>
</div>


mywwp 05-12-2010 05:36 PM

Re: Help Coding a .tpl file?
 
No such luck, Still on top of one another. I'd prefer them centered and next to each other from left to right.

Thanks for trying.


All times are GMT -8. The time now is 12:14 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.