Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

help - contact us form information text


rayjuan

Recommended Posts

Posted

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?

 

contactsq.jpg

 

 

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>

Posted

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

Archived

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

×
×
  • Create New...