Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Website design


demonz

Recommended Posts

You'll need to edit the footer class in stylesheet.css to change the color. To remove the number of requests, remove that part of code from the inlcudes/footer.php file.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Answers to your questions:

 

1. Look under catalog/stylesheet.css around lines 88-98:

 

TR.footer {

background: #bbc3d3;

}

 

TD.footer {

font-family: Verdana, Arial, sans-serif;

font-size: 10px;

background: #bbc3d3;

color: #ffffff;

font-weight: bold;

}

 

The part in bold will determine the color of the bar.

 

2. Look under catalog/includes/footer.php around lines 17-18:

 

<td class="footer">  <?php echo strftime(DATE_FORMAT_LONG); ?>  </td>

<td align="right" class="footer">  <?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?>  </td>

 

The part in bold will show the number of requests text. Simply remove it as follows:

 

<td class="footer">  <?php echo strftime(DATE_FORMAT_LONG); ?>  </td>

<td align="right" class="footer"></td>

 

3. Look under catalog/includes/footer.php around lines 15-20:

 

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

<tr class="footer">

<td class="footer">  <?php echo strftime(DATE_FORMAT_LONG); ?>  </td>

<td align="right" class="footer">  <?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?>  </td>

</tr>

</table>

 

To make the bar thinner, you'll either need to have nothing inside the bar, or reduce the size of the text inside the bar. Otherwise, no matter how small you set, it'll extent automatically to fit the size of the text. For example, you want nothing inside the bar and set the bar to 3 pixels high:

 

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

<tr class="footer">

<td class="footer"></td>

<td align="right" class="footer"></td>

</tr>

</table>

 

Hope that helps... :blush:

Link to comment
Share on other sites

Thank You Thank You Thank You!!!!!!! It worked like a charm :)

Kathy

 

 

Answers to your questions:

 

1. Look under catalog/stylesheet.css around lines 88-98:

 

TR.footer {

  background: #bbc3d3;

}

 

TD.footer {

  font-family: Verdana, Arial, sans-serif;

  font-size: 10px;

  background: #bbc3d3;

  color: #ffffff;

  font-weight: bold;

}

 

The part in bold will determine the color of the bar.

 

2. Look under catalog/includes/footer.php around lines 17-18:

 

    <td class="footer">  <?php echo strftime(DATE_FORMAT_LONG); ?>  </td>

    <td align="right" class="footer">  <?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?>  </td>

 

The part in bold will show the number of requests text. Simply remove it as follows:

 

    <td class="footer">  <?php echo strftime(DATE_FORMAT_LONG); ?>  </td>

    <td align="right" class="footer"></td>

 

3. Look under catalog/includes/footer.php around lines 15-20:

 

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

  <tr class="footer">

    <td class="footer">  <?php echo strftime(DATE_FORMAT_LONG); ?>  </td>

    <td align="right" class="footer">  <?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?>  </td>

  </tr>

</table>

 

To make the bar thinner, you'll either need to have nothing inside the bar, or reduce the size of the text inside the bar. Otherwise, no matter how small you set, it'll extent automatically to fit the size of the text. For example, you want nothing inside the bar and set the bar to 3 pixels high:

 

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

  <tr class="footer">

    <td class="footer"></td>

    <td align="right" class="footer"></td>

  </tr>

</table>

 

Hope that helps...  :blush:

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...