seperate images
This commit is contained in:
@@ -79,7 +79,11 @@
|
||||
.jumbotron {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
background-image: url("{{asset('public/images/teamstore') . '/' . $store_array[0]->StoreUrl . '/' . $store_array[0]->StoreBanner }}");
|
||||
@if($store_array[0]->StoreBanner == null)
|
||||
background-image: url("{{asset('public/images/teamstore/store-banner-dark.png')}}");
|
||||
@else
|
||||
background-image: url("{{asset('public/images/teamstore') . '/' . $store_array[0]->StoreUrl . '/' . $store_array[0]->StoreBanner }}");
|
||||
@endif
|
||||
background-color: #f3f3f3;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
@@ -89,9 +93,10 @@
|
||||
|
||||
.store-name{
|
||||
|
||||
background-color: #ffffff;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
position: absolute;
|
||||
padding: 10px;
|
||||
min-width: 270px;
|
||||
|
||||
}
|
||||
|
||||
@@ -110,15 +115,27 @@
|
||||
@media (min-width: 992px) {
|
||||
.jumbotron { height: 128px; }
|
||||
}
|
||||
|
||||
.product-name-holder{
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="jumbotron">
|
||||
<!-- <div class="store-name">
|
||||
<h4><img src="https://img.icons8.com/ios/40/000000/online-store-filled.png"> {{ $store_array[0]->StoreName }}</h4>
|
||||
</div> -->
|
||||
@if($store_array[0]->StoreBanner == null)
|
||||
<div class="store-name">
|
||||
<h4>
|
||||
<img src="https://img.icons8.com/ios/40/000000/online-store-filled.png">
|
||||
{{ $store_array[0]->StoreName }}<br>
|
||||
</h4>
|
||||
Official Team Store
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -144,7 +161,7 @@
|
||||
<a href="{{ url('teamstore') }}/{{ $store_array[0]->StoreUrl }}/product/{{ $product->ProductURL }}">
|
||||
<img style="height: 201.84px;" src="{{ config('site_config.prod_private_server_ip') }}/images/{{ $filename }}" alt="{{ $product->ProductName }}" >
|
||||
</a>
|
||||
<h4 class="text-center">{{ $product->ProductName }}</h4>
|
||||
<h4 class="text-center product-name-holder">{{ $product->ProductName }}</h4>
|
||||
<!-- (w/ Shorts) -->
|
||||
<!-- <div class="ratings">
|
||||
<span class="glyphicon glyphicon-star"></span>
|
||||
|
||||
Reference in New Issue
Block a user