demonz Posted August 7, 2005 Posted August 7, 2005 Hi, I wanted to know how i would go about changing the bottom bar: 1. the colour 2. getting rid of how many requests the page has had 3. and if its possible how to make the bar more thin This is the website: Wholesale Zippos
Jack_mcs Posted August 7, 2005 Posted August 7, 2005 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. All of My Addons Get the latest versions of my addons Recommended SEO Addons
moonstone Posted August 7, 2005 Posted August 7, 2005 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:
demonz Posted August 7, 2005 Author Posted August 7, 2005 Thanks for all the help i have now resolved my problem. Thanks again ur legends. :thumbsup:
Guest Posted August 7, 2005 Posted August 7, 2005 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: <{POST_SNAPBACK}>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.