|
In a Magento website, e.g.
http://www.magentowebsite.com/customer/account/index/ (customer profile page, shipping address section)
Instead of this output:
Customer Name<br />
#1 First Street<br />
Canberra, 2600<br />
Australia<br />
T: 03 7371 6777 <br />
I want something like this:
<tr>
<td>Customer Name</td>
<td>#1 First Street, Canberra, 2600</td>
<td>03 7371 6777<br />
</tr>
Is this possible? I hope my question and explanation made sense.
|