spid3r19 Posted October 5, 2009 Posted October 5, 2009 Hi there, iv installed OScommerce on my local machine, just to play about with it etc but cant work out how to get the website name in the box at the top, next to my logo e.g <logo> <WEBSITE NAME HERE> but center the <website name> im guessing something to do with header.php but not quite sure where to enter it...
spid3r19 Posted October 5, 2009 Author Posted October 5, 2009 i have found out how to get the NAME up there, but not on same level as the logo :(
FIMBLE Posted October 5, 2009 Posted October 5, 2009 you will need to add some HTML to get this, look at the code for the links below the call for the image and see if you can recreate this to do what you want it to do. Nic Sometimes you're the dog and sometimes the lamp post [/url] My Contributions
spid3r19 Posted October 5, 2009 Author Posted October 5, 2009 sorry, im a total noob at designing site :( so look at the code.. <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', 'Local') . '</a>'; ?></td> </tr> </table> then how do i get the website name to appear level with the logo :S:S:S
FIMBLE Posted October 5, 2009 Posted October 5, 2009 here you go then <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="header"> <td valign="middle" width="227"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', 'Local') . '</a>'; ?></td> <td align="left" valign="middle">Storename</td> </tr> You will need to change the width to the width of your store logo Sometimes you're the dog and sometimes the lamp post [/url] My Contributions
spid3r19 Posted October 5, 2009 Author Posted October 5, 2009 here you go then <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="header"> <td valign="middle" width="227"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', 'Local') . '</a>'; ?></td> <td align="left" valign="middle">Storename</td> </tr> You will need to change the width to the width of your store logo thank you Very Much :D
Recommended Posts
Archived
This topic is now archived and is closed to further replies.