Your ROOT_URL in app.ini is http://159.89.207.79:3000/ but you are visiting http://9.cron.my.id:3000/tribikram/ET-VISA/commit/25a9be6e1ce458db2af0fc699b11a2fbbb480217?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
67 additions and
6 deletions
public/frontend/css/style.css
resources/views/study-abroad-detail.blade.php
@ -856,17 +856,41 @@ Responsive Codes
. scholarship-desc h1 ,
. scholarship-desc h3 ,
. career-counselling h3 ,
. visa-desc h3 {
. visa-desc h3 , . study-detail-desc h5 {
color : # 296AC7 ;
}
. universities-card {
. study-detail-desc h5 {
font-weight : 600 ;
font-size : 22px ;
margin-top : 30px ;
margin-bottom : 0 ;
}
/ * . universities-card {
background : # FFFFFF ;
box-shadow : 0px 3px 5px rgba ( 0 , 0 , 0 , 0 . 1 ) ;
border-radius : 8px ;
text-align : center ;
padding : 20px ;
margin : 20px 0 ;
} * /
. universities-card ul li {
list-style : none ;
font-size : 16px ;
font-weight : 600 ;
line-height : 30px ;
}
. universities-card ul li :: before {
content : "\f00c" ;
color : # 296AC7 ;
font-family : FontAwesome , sans-serif ;
display : inline-block ;
margin-right : 0 . 5em ;
margin-left : -1 . 3em ;
width : 1 . 3em ;
}
. universities-card ul {
margin-top : 15px ;
}
. universities-card h5 {
font-weight : 700 ;
margin-top : 1rem ;
@ -1446,6 +1470,16 @@ Responsive Codes
margin : 1rem 0 ;
justify-content : space-between ;
}
. faq-section . accordion-button {
font-weight : bold ;
font-size : 17px ;
}
. faq-section . accordion {
margin-top : 30px ;
}
. faq-section . accordion-button : not ( . collapsed ) {
color : # 296ac7 ;
}
. faq-section . accordion-button : focus {
box-shadow : none ;
}
@ -2024,6 +2058,22 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
. service-page-card {
min-height : 20pc ;
}
. study-detail-desc h5 {
margin-bottom : 15px ;
}
. universities-card ul {
margin : 0 ;
}
. universities-card ul : nth-last-of-type ( 4 ) {
margin-bottom : 20px ;
}
. faq-section . accordion-button {
line-height : 27px ;
align-items : flex-start ;
}
. faq-section . accordion-button , . accordion-body {
line-height : 27px ;
}
}
/* mobile view css end */
/* ipad, tablets screen css */
@ -33,17 +33,28 @@
< div class = "study-detail-desc" >
< h1 > {{$second_section->title}}< / h1 >
{!!$second_section->description!!}
< h5 > The popular universities in NSW< / h5 >
< / div >
< div class = "row" >
@foreach($second_section->service_section_point as $point)
<!-- @foreach($second_section - >service_section_point as $point) -->
< div class = "col-md-3" >
< div class = "universities-card" >
< img src = "{{url($point->icon ?? '')}}" class = "w-100" alt = "" >
< h5 > {{$point->point}}< / h5 >
<!-- <img src="{{url($point - >icon ?? '')}}" class="w - 100" alt=""> -->
<!-- <h5>{{$point - >point}}</h5> -->
< ul >
< li > University of Sydney< / li >
< li > UNSW Sydney< / li >
< li > University of Technology Sydney< / li >
< li > Charles Sturt University< / li >
< li > Southern Cross University< / li >
< li > University of New England< / li >
< li > University Wollongong< / li >
< / ul >
< / div >
< / div >
@endforeach
<!-- @endforeach -->
{!!$second_section->sub_description!!}
< / div >