Gap30 Posted March 7, 2007 Posted March 7, 2007 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
bill110 Posted March 8, 2007 Posted March 8, 2007 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
Gap30 Posted March 9, 2007 Author Posted March 9, 2007 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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.