Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

need help to center my logo on the header


Kerm007

Recommended Posts

how can i center my logo on ther header ?

 

go this arround my line 55 to 57 in the header file in the folder include header.php

 

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

<tr class="header">

<td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?></td>

 

 

Thanks

 

here the site i want to have the logo on top center

 

http://www.prodiskmusic.com/onlinestore/catalog/

Link to comment
Share on other sites

Hi Pierre

 

Try this:

 

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

<tr class="header">

<td valign="middle" align="center"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?></td>

 

Or this:

 

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

<tr class="header">

<td align="center"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?></td>

Link to comment
Share on other sites

Hi Pierre

 

Try this:

 

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

<tr class="header">

<td valign="middle" align="center"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?></td>

 

Or this:

 

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

<tr class="header">

<td align="center"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?></td>

 

great it works with the first mod

 

Ty

 

Pierre

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...