app/template/default/Mypage/customer_info.twig line 1

Open in your IDE?
  1. <div style="letter-spacing: .1em; width: 280px; padding: 10px; border: 2px solid #368886; background-color: white; margin-top: 6px; right: 12px; color: black; position: absolute; top: 3px">
  2.     <div>
  3.     {# 会員情報:メールアドレス表示 #}
  4.         <div style="line-height: 170%; text-align: right; width: 47px; float: left;">Mail&nbsp;:&nbsp;</div>
  5.         <div style="letter-spacing: .05em; color: blue; font-size: 16px; font-weight: bold; float: left;">
  6.         {% if lmCustomer.customer_mail != "" %}
  7.         <span style="float: left; font-weight: bold; font-size: {% if mailDisp > 0 %} 10px; margin-top: 3px{% else %}16px{% endif %};">{{lmCustomer.customer_mail}}</span>
  8.         {% else %}
  9.         <span style="letter-spacing: .1em; color: black">( 登録がありません )</span>
  10.         {% endif %}
  11.         </div>
  12.     </div>
  13.     <br style="clear: both;" />
  14.     <div style="margin-top: 2px;">
  15.     {# 会員情報:FAX番号表示 #}
  16.         <div style="text-align: right; width: 47px; float: left;">FAX&nbsp;:&nbsp;</div>
  17.         <div style="color: blue; font-size: 16px; font-weight: bold; float: left;">
  18.         {% if lmCustomer.customer_fax != "" %}
  19.         {{lmCustomer.customer_fax}}
  20.         {% else %}
  21.         <span style="letter-spacing: .1em; color: black">( 登録がありません )</span>
  22.         {% endif %}
  23.         </div>
  24.     </div>
  25.     <br style="clear: both;" />
  26. </div>