Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

how can i move pics from footer


busyduck

Recommended Posts

check my link at http://www.veronicahung.com/myshop/

 

i would like to move the paypal pic from footer to Payment method box(left column), how can i do it.? also a quick question, how come ever time i login my web, the right hand side column currencey are moved??

 

Go into the payment box you created in includes/boxes and call your image in place of the text you have in it with '<img src="images/YOUR.gif">' replacing [this is content of payment method] or

 

<?php
/*
?$Id: accept.php,v 1.1 2004/08/25 22:44:46 akhan Exp $

?osCommerce, Open Source E-Commerce Solutions
?http://www.oscommerce.com

?Copyright (c) 2003 osCommerce

?Released under the GNU General Public License
*/
?>
<!-- Card Info Box //-->
? ? ? ? ?<tr>
? ? ? ? ? ?<td>
<?php 
?$info_box_contents = array(); 
?$info_box_contents[] = array('align' => 'left', 
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'text' ?=> BOX_HEADING_ACCEPT 
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?); 
?new infoBoxHeading($info_box_contents, false, false); 

?$info_box_contents = array(); 
?$info_box_contents[] = array('align' => 'center', 
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'text' ?=> '<a href="http://www.paypal.com/cgi-bin/webscr?cmd=xpt/general/PaypalAccountTypes-outside"= target"=_blank">' . tep_image(DIR_WS_IMAGES . 'paypal.gif', BOX_INFORMATION_ACCEPT . MODULE_PAYMENT_PAYPAL_ID) . '</a><br>'
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? );

? ? ? ? ? new infoBox($info_box_contents);
?>
</td></tr>
<tr>
<td>
<img src="images/infobox/right.gif" width=100% height=12></td>
</tr>
<!-- accept_eof //-->

We help each other, to help ourselves!

Aloha Allison!

 

Liken to wrinkles, the many paths of my life not only altered my destiny, but my appearance.

 

Poetry, the artistry of plying ones soul to the empty canvases of life. A vision without sight. A verse without darkness. Lighting each day with a prose of beauty and love.

Link to comment
Share on other sites

Go into the payment box you created in includes/boxes and call your image in place of the text you have in it with '<img src="images/YOUR.gif">' replacing [this is content of payment method] or

 

<?php
/*
?$Id: accept.php,v 1.1 2004/08/25 22:44:46 akhan Exp $

?osCommerce, Open Source E-Commerce Solutions
?http://www.oscommerce.com

?Copyright (c) 2003 osCommerce

?Released under the GNU General Public License
*/
?>
<!-- Card Info Box //-->
? ? ? ? ?<tr>
? ? ? ? ? ?<td>
<?php 
?$info_box_contents = array(); 
?$info_box_contents[] = array('align' => 'left', 
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'text' ?=> BOX_HEADING_ACCEPT 
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?); 
?new infoBoxHeading($info_box_contents, false, false); 

?$info_box_contents = array(); 
?$info_box_contents[] = array('align' => 'center', 
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'text' ?=> '<a href="http://www.paypal.com/cgi-bin/webscr?cmd=xpt/general/PaypalAccountTypes-outside"= target"=_blank">' . tep_image(DIR_WS_IMAGES . 'paypal.gif', BOX_INFORMATION_ACCEPT . MODULE_PAYMENT_PAYPAL_ID) . '</a><br>'
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? );

? ? ? ? ? new infoBox($info_box_contents);
?>
</td></tr>
<tr>
<td>
<img src="images/infobox/right.gif" width=100% height=12></td>
</tr>
<!-- accept_eof //-->

 

 

thx a lot, i get it done

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...