rayjuan Posted May 26, 2010 Posted May 26, 2010 hi all, i have managed to insert a code that pulls information from the oscommerce admin back end under configurations where you insert your store name and address. as you can see on the attached picture below, the words are all squeezed together. is there any way to make the width broader? here is the code that i have added in the contact_us.php file. hope someone can help identify this. thank you! <tr> <td class="main"><?php echo nl2br(STORE_NAME_ADDRESS); ?></td> </tr> <tr> <td> </td> </tr> <tr> <td class="main"><?php echo ENTRY_NAME; ?></td>
chris_86 Posted May 26, 2010 Posted May 26, 2010 Hi, seems be the same table of the bottom. try this: <tr> <td class="main" colspan="2"><?php echo nl2br(STORE_NAME_ADDRESS); ?></td> </tr> <tr> <td> </td> </tr> <tr> <td class="main"><?php echo ENTRY_NAME; ?></td> regards
Recommended Posts
Archived
This topic is now archived and is closed to further replies.