Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

remove all small gif next to the top middle heading?


jennki

Recommended Posts

Posted

Hi, anyone pls. advise me where is the little graphic at the right side of the top middle column on most of the pages shown.

 

For example, there is a little graphic called "table_background_default.gif" in the index.php (HOME) next to the HEADING TITLE: "What's New Here?".

 

Where are these graphics been put into? Which file can I found these and change them or remove them? Thanks.

Posted

They are called on each file dispayed on the site.

They are coded the same way each time just after the HEADING_TITLE. Here is an example for the login.php page :

<tr>
		<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
		<td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_login.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
	  </tr>

the line with "tep_image(DIR_WS_IMAGES..."

 

if you want to remove them just comment the "echo" line like that :

<tr>
		<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
		<td class="pageHeading" align="right"><?php //echo tep_image(DIR_WS_IMAGES . 'table_background_login.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
	  </tr>

 

Of course you will have to do it on each page ! :P

MS2 2.2 fr + Manufacturer copy (5 manufacturers - modified to make it works) + More pics 6 + FCK Editor + zones shipping (modified without weight) + My contribution : Shopping Cart Management for Unique Products

 

I apologize in advance for my poor English I'm French !

Archived

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

×
×
  • Create New...