Telephone Number Layout Code: Stacked and Aligned


Copy and paste this code block into your HTML:


<!--BEGIN TELEPHONE MOBILE FAX ROW-->
<tr>
<td nowrap style="text-align:left; border-style: hidden; padding-top: 0px; white-space: nowrap; line-height:15px;" colspan="2">

<TABLE border=0 cellSpacing=0 cellPadding=0>
<tr>

<td nowrap style="text-align:left; border-style: hidden; padding-top: 0px; white-space: nowrap; line-height:15px;" colspan="2">
<p class="contentStyle">


          {%- if phone -%}
          Tel:<br>
          {%- endif -%}

          {%- if mobile -%}
          Cell:<br>
          {%- endif -%}

          {%- if fax -%}
          Fax:
          {%- endif -%}

</p>
</td>

<td nowrap style="text-align:left; border-style: hidden; padding-left: 5px; padding-top: 0px; white-space: nowrap; line-height:15px;" colspan="2">
<p class="contentStyle">

          {%- if phone -%}
          <!--BEGIN PHONE NUMBER -->{{ phone }}<!--END PHONE NUMBER -->{%- if extension -%}&nbsp;x&nbsp;{{ extension }}{%- endif -%}<br>
          {%- endif -%}

          {%- if mobile -%}
          <!--BEGIN MOBILE NUMBER -->{{ mobile }}<!--END MOBILE NUMBER --><br>
          {%- endif -%}

          {%- if fax -%}
          <!--BEGIN FAX NUMBER -->{{ fax }}<!--END FAX NUMBER -->
          {%- endif -%}

</p>
</td>

</tr>
</table>

</td>
</tr>
<!--END TELEPHONE MOBILE FAX ROW-->