Telephone Number Layout Code: Simple Stacked


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">
<p class="contentStyle">


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

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

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

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