Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

banner at top


markvellagera

Recommended Posts

Posted

I would like a banner to appear at the top of the online shop but I would like it to extend all the way to the very right of the page. The problem is that to the right there are icons of My Account, Cart Contents and Checkout. How do I get rid of these icons (or else put them somewhere else) so that the top banner can extend all the way to the right?

Posted
I would like a banner to appear at the top of the online shop but I would like it to extend all the way to the very right of the page. The problem is that to the right there are icons of My Account, Cart Contents and Checkout. How do I get rid of these icons (or else put them somewhere else) so that the top banner can extend all the way to the right? CAN SOMEONE PLEASE REPLY!
Posted

in the includes/header.php

 

replace the

 

<?php echo '<a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_account.gif', HEADER_TITLE_MY_ACCOUNT) . '</a>  <a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '">' . tep_image(DIR_WS_IMAGES . 'header_cart.gif', HEADER_TITLE_CART_CONTENTS) . '</a>  <a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_checkout.gif', HEADER_TITLE_CHECKOUT) . '</a>'; ?>  

 

with

 

 

<?php
 if ($banner = tep_banner_exists('dynamic', '468x50')) {
echo tep_display_banner('static', $banner);
 }
?>

Archived

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

×
×
  • Create New...