mini cart configurable options displaying all in bold now converted back to normal
This commit is contained in:
parent
b2161571bd
commit
5de07d1b35
|
|
@ -938,7 +938,6 @@ section.slider-block {
|
|||
|
||||
.item-details .item-options {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,6 +25,13 @@ return [
|
|||
'search-text' => 'Search products here'
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'View Shopping Cart',
|
||||
'checkout' => 'Checkout',
|
||||
'cart' => 'Cart',
|
||||
'zero' => '0'
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
'subscribe-newsletter' => 'Subscribe Newsletter',
|
||||
'subscribe' => 'Subscribe',
|
||||
|
|
|
|||
|
|
@ -62,9 +62,9 @@
|
|||
</div>
|
||||
|
||||
<div class="dropdown-footer">
|
||||
<a href="{{ route('shop.checkout.cart.index') }}">View Shopping Cart</a>
|
||||
<a href="{{ route('shop.checkout.cart.index') }}">{{ __('shop::app.minicart.view-cart') }}</a>
|
||||
|
||||
<a class="btn btn-primary btn-lg" style="color: white;" href="{{ route('shop.checkout.onepage.index') }}">CHECKOUT</a>
|
||||
<a class="btn btn-primary btn-lg" style="color: white;" href="{{ route('shop.checkout.onepage.index') }}">{{ __('shop::app.minicart.checkout') }}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
<div class="dropdown-toggle">
|
||||
<div style="display: inline-block; cursor: pointer;">
|
||||
|
||||
<span class="name">Cart<span class="count"> (0) </span></span>
|
||||
<span class="name">{{ __('shop::app.minicart.cart') }}<span class="count"> ({{ __('shop::app.minicart.zero') }}) </span></span>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
Loading…
Reference in New Issue