Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to put a bar in the footer.php


Assailant

Recommended Posts

Posted

anybody know how I can put my bar in the footer area? i seen this done in many sites but I dont know html or php can someone direct me to the code on how to put the bar in the footer.php it would be greatly appreciated thanks

Posted

What bar are you talking about?

 

The_Bear

Posted

where the hit counter bar is, I removed that I want to know how I can add my own bar thats just an image

Posted

I guess we don't understand what you are asking. footer.php is basically a table. All you would have to do is look at how the <tr> commands are configured and ad a new <tr> where you want a 'bar' to appear. Does this help any? :(

Contributions I used : Updated 06-13-04 23:42

----------------

Vote on My Graphis Poll

Posted

I just want to put an image on the bottom of the page, i suck at html and php so any help would be appreciated, thanks for your response, i like your website by the way,

Posted

If you are using a basic installation, go into includes/footer.php and look for this...

<table border="0" width="100%" cellspacing="0" cellpadding="0">
?<tr>
? ?<td align="center" class="smallText">
<?php
/*
?The following copyright announcement can only be
?appropriately modified or removed if the layout of
?the site theme has been modified to distinguish
?itself from the default osCommerce-copyrighted
?theme.

?For more information please read the following
?Frequently Asked Questions entry on the osCommerce
?support site:

?http://www.oscommerce.com/community.php/faq,26/q,50

?Please leave this comment intact together with the
?following copyright announcement.
*/

?echo FOOTER_TEXT_BODY
?>
? ?</td>
?</tr>
</table>

 

Add a row before the copyright info like so...

 

This

<table border="0" width="100%" cellspacing="0" cellpadding="0">
?<tr>
? ?<td align="center" class="smallText">
<?php
/*
?The following copyright announcement can only be

 

Will become this...

<table border="0" width="100%" cellspacing="0" cellpadding="0">

<tr>

<td align=center>

 

</td>

</tr>

? <tr>

? ? <td align="center" class="smallText">

<?php

/*

? The following copyright announcement can only be

 

Add whatever you would like in the empty space between the <td align=center> and the </td>

 

Hope that helps.

 

Thanks for the compliment too :D

Contributions I used : Updated 06-13-04 23:42

----------------

Vote on My Graphis Poll

Archived

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

×
×
  • Create New...