diff options
author | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-07-05 16:08:41 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-07-05 16:08:41 +0700 |
commit | 1505a2effacd37bb839228ab9a6d0422afe4864c (patch) | |
tree | d53ae8a95fbda462c20841abaac61a7be88cac4d | |
parent | c73e858356ee9cec7bd8fd2b70bb575f82346980 (diff) |
use text truncate and reduce product column to 2 to have bigger item displayed
-rw-r--r-- | pages/results.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pages/results.html b/pages/results.html index feaf8cf..4e5b971 100644 --- a/pages/results.html +++ b/pages/results.html @@ -62,15 +62,15 @@ return $Values->{more_link} ? $more : undef; [/calc][search-list] <!-- Product --> - <div class="col-lg-4 col-md-4"> + <div class="col-lg-6 col-md-6"> <div class=" container"> <a href="[area [item-code]]" class="d-block h-100"> <img src="__IMAGE_DIR__/thumb/[item-field thumb]" class="img-fluid img-thumbnail" alt="[item-description]" title="[item-code]"> </a> </div> <div class="container"> - <h4>[item-description]</h4> - <h5 class="text-primary">[item-price]</h5> + <h5 class="text-truncate">[item-description]</h5> + <h6 class="text-primary">[item-price]</h6> </div> </div> <!-- End of Product --> |