Server Address : 2a02:4780:a:760:0:37cc:13e2:3
Web Server : LiteSpeed
Uname : Linux uk-fast-web660.main-hosting.eu 5.14.0-570.55.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Oct 21 05:27:51 EDT 2025 x86_64
PHP Version : 7.4.33
<?php
if($page_name != "login"){
$banner = $bannerObj -> getAllBannerByPageName($page_name);
}
?>
<?php
$bannerImg = $imagesObj -> getImage('Banner');
$slideshow = $slideshowObj -> getAllSlideshow();
?>
<style>
.banner{
position:relative;
width:100%;
background:#fff;
}
.banner::before {
content: "";
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
position: absolute;
background:#000000;
background-size: cover;
opacity: .4;
}
#banners {
position:relative;
}
#banners .owl-nav{
margin-top:0;
}
#banners span{
display:none;
}
#banners .owl-prev, #banners .owl-next {
position:absolute;
top:40%;
}
#banners .owl-prev:hover, #banners .owl-next:hover {
background:transparent;
}
#banners .owl-prev{
left:30px;
width: 50px;
height: 50px;
border-left: 2px solid white!important;
border-bottom: 2px solid white!important;
z-index: 1000;
text-indent: -60px;
transform: translateY(-50%)rotate(45deg);
}
#banners .owl-next{
right:30px;
width: 50px;
height: 50px;
border-left: 2px solid white!important;
border-bottom: 2px solid white!important;
position: absolute;
z-index: 1000;
text-indent: -60px;
transform: translateY(-50%)rotate(-135deg);
}
</style>
<div class="banner">
<div class="row justify-content-between">
<div id="banners" class="col-lg-12 owl-carousel owl-theme">
<?php
while($slideshowImg = mysqli_fetch_array($slideshow)){
?>
<div class="item">
<img src="images/slideshow/<?php echo $slideshowImg['img_url']?>" style="width:100%"class="img-fluid">
</div>
<?php
}
?>
<!--<div class="item">-->
<!-- <img src="images/others/<?php // echo $bannerImg['image']?>" style="width:100%"class="img-fluid">-->
<!--</div>-->
</div>
</div>
</div>
<div class="container">
<div class="row mt-5">
<div class="col-lg-10 mx-auto text-center">
<h1 class="section-title">
<?php
if($page_name == "login"){
echo "Login";
}else{
if(isset($col_name)){
echo $col_name;
}
else{
echo $banner['head'];
}
}
?>
</h1>
<p>
<?php
if($page_name == "login"){
echo "Login to view our exclusive products";
}else{
echo $banner['content'];
}
?>
</p>
</div>
</div>
</div>