Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Adding text to the Header


Guest

Recommended Posts

Okay I admit I have no clue what I am doing but this forum has been incredible.

 

My question is I purchased a template and I am trying to figure out how can I add a text message to the top right of the header. I removed the language icons from the top right but would like to add "Free Shipping" message.

 

Here is the line from the header.php that I think I need to add. What is confusing the top_right.gif is a thin grafic that I guess is replicatd or stretched across the border.

 

Any help would be appreciated.

 

</TD>

<TD align="right" width="10"><?php echo tep_image(DIR_WS_IMAGES . 'design/top_right.gif', ''); ?></TD>

</TR>

</TABLE>

Link to comment
Share on other sites

Can't test it right now as I dont have osc installed on this PC. Try this:

 

Change:

</TD>

<TD align="right" width="10"><?php echo tep_image(DIR_WS_IMAGES . 'design/top_right.gif', ''); ?></TD>

</TR>

</TABLE>

 

To this:

 

</TD>

<TD align="right" width="10"><?php echo "Free Shipping"; ?></TD>

</TR>

</TABLE>

 

Or this:

 

</TD>

<TD align="right" width="10">Free Shipping</TD>

</TR>

</TABLE>

Irfan,

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...