Hello,
Thanks for your Patience!
- You can simply use the following code to hide the Slider and Show a Static Image:
<section id="slider" class="slider-parallax swiper_wrapper full-screen clearfix" style="background: url('images/portfolio/full/4.jpg') center center no-repeat; background-size: cover;">
<div class="slider-parallax-inner">
<div class="swiper-container swiper-parent hidden-xs">
...
</div>
</div>
</section>
- To be able to use the Floating Contact Me Button, you will also need to add the following CSS from the demos/car/car.css File in the css/custom.css File:
#contact-me {
position: fixed;
z-index: 299;
width: 40px;
height: 40px;
font-size: 20px;
line-height: 36px;
text-align: center;
color: #FFF;
top: auto;
left: auto;
right: 30px;
bottom: 30px;
cursor: pointer;
border-radius: 2px;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
-webkit-transition: transform .3s ease;
-o-transition: transform .3s ease;
transition: transform .3s ease;
}
.gototop-active #contact-me {
-webkit-transform: translateY(-50px);
-ms-transform: translateY(-50px);
-o-transform: translateY(-50px);
transform: translateY(-50px);
}
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.