Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

My store name showing up as regular font size


Gap30

Recommended Posts

Posted

How do I increase the font size for store name?

 

code in includes/header.php

 

<td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'oscommerce.gif','Keepsake Caboose') . '</a>'; ?></td>

 

tried

 

<h1>'Keepsake Caboose'</h1>

 

When tried inserting this got parse error

 

Help. You guys usally point out some stupid error that i have made.

 

Thanks

Greg

Posted

Try it like this

<td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '"><h1>Keepsake Caboose</h1></a>' .; ?></td>

What was happening to your code was you were putting the h1 tags within the php code.

If this does not work try removing the last period in the code

My Contributions

 

Stylesheet With Descriptions Glassy Grey Boxtops Our Products Meta Tags On The Fly

Password Protect Admin

"No matter where you go....There you are" - Buccaroo Bonsai

Posted
Try it like this

<td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '"><h1>Keepsake Caboose</h1></a>' .; ?></td>

What was happening to your code was you were putting the h1 tags within the php code.

If this does not work try removing the last period in the code

 

Thanks for the suggestion got the following :

 

Parse error: parse error, unexpected ';' in /home/keepsake/public_html/osCommerce/catalog/includes/header.php on line 57

 

line 57

 

<td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '"><h1>Keepsake Caboose</h1></a>'.; ?></td>

 

thanks Greg

Archived

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

×
×
  • Create New...