Compare commits

...

2 Commits

Author SHA1 Message Date
tribikram 261c2a7830 [edit] service view image fixed 2 years ago
Mahesh Sharma 05224827b2 layout-app 2 years ago
  1. 10
      public/frontend/css/style.css
  2. 10
      resources/views/layout/app.blade.php
  3. 4
      resources/views/service_view.blade.php

@ -382,7 +382,8 @@ Responsive Codes
.service-primary .row,
.service-secondary .row,
.service-view-last .row,
.insurance-desc .row{
.insurance-desc .row,
.service-detail-secondary .row{
display: flex;
align-items: center;
}
@ -1496,6 +1497,10 @@ Responsive Codes
.service-primary-img{
margin-right: 25px;
}
.service-detail-secondary{
padding: 3rem 6rem 0 6rem;
background: #E54A5F;
}
.service-secondary{
position: relative;
padding: 3rem 6rem;
@ -1792,7 +1797,8 @@ Responsive Codes
.insurance-desc,
.labor-section-primary,
.labor-section-secondary,
.pathway-steps-section{
.pathway-steps-section,
.service-detail-secondary{
padding: 2rem;
}
.visa-services,

@ -66,8 +66,8 @@
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li>
<a class="dropdown-item" href="{{url('/need_chef')}}">Hospitality Operator’s</a>
<a class="dropdown-item" href="{{url('/am_chef')}}">Hospitality Candidates</a>
<a class="dropdown-item" href="{{url('/need_chef')}}">Hospitality Operator</a>
<a class="dropdown-item" href="{{url('/am_chef')}}">Hospitality Candidate</a>
<a class="dropdown-item" href="{{url('/labor_agreement')}}">Labour Agreements</a>
</li>
</ul>
@ -114,7 +114,7 @@
<div class="col-md-3">
<div class="footer-desc">
<img src="{{url('frontend/images/footer-logo.png')}}" class="img-fluid" alt="">
<p>A PLUS Australia Agency, we strive to turn your dream into reality. We help you to achieve Permanent Residency in Australia.</p>
<p>A PLUS Australia Agency, we strive to turn your dream into reality. We help you to secure your future in Australia.</p>
<div class="immigration-logo">
<img src="{{url('frontend/images/immigration-lawyers.png')}}" class="img-fluid mt-4" alt="">
</div>
@ -135,8 +135,8 @@
<div class="recruitment">
<h2>Recruitment</h2>
<ul>
<li><a href="/need_chef">Hospitality Operator’s</a></li>
<li><a href="/am_chef">Hospitality Candidates</a></li>
<li><a href="/need_chef">Hospitality Operator</a></li>
<li><a href="/am_chef">Hospitality Candidate</a></li>
<li><a href="/labor_agreement">Labour Agreements</a></li>
</ul>
</div>

@ -42,10 +42,10 @@
</section>
@if($service_sections->count() > 1)
@php $second_service = $service_sections[1];@endphp
<section class="service-secondary">
<section class="service-detail-secondary">
<div class="row">
<div class="col-md-6">
<div class="service-secondary-img">
<div class="service-detail-secondary-img">
<img src="{{url($second_service->image ?? '')}}" class="w-100" alt="">
</div>
</div>

Loading…
Cancel
Save