Skip to content

Commit

Permalink
[-] FO : correct class in addresses block
Browse files Browse the repository at this point in the history
In order-detail.tpl, you have to wrap columns in a row.
You don 't need to add col-lg-6 col-md-6 col-sm-6, just col-md-6 is enought.
  • Loading branch information
prestarocket committed Feb 9, 2016
1 parent 62a005f commit 23d1488
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions themes/classic/templates/customer/order-detail.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@
{/if}

{block name='addresses'}
<div class="row">
{if $order.addresses.delivery}
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="col-md-6">
<article id="delivery-address" class="card address">
<div class="card-header">
{l s='Delivery address %s' sprintf=$order.addresses.delivery.alias}
Expand All @@ -85,7 +86,7 @@
</div>
{/if}

<div class="col-lg-6 col-md-6 col-sm-6">
<div class="col-md-6">
<article id="invoice-address" class="card address">
<div class="card-header">
{l s='Invoice address %s' sprintf=$order.addresses.invoice.alias}
Expand All @@ -95,7 +96,7 @@
</div>
</article>
</div>
<div class="clearfix"></div>
</div>
{/block}

{$hook_orderdetaildisplayed}
Expand Down

0 comments on commit 23d1488

Please sign in to comment.