This topic has 3 replies, 2 voices, and was last updated 6 years, 7 months ago ago by Olga Barlow
Hi,
My website is http://beta.bukabeli.co.id/#
Currently i’m having problem how to make the slideshow displayed fullscreen in mobile view.
And also the button in the slideshow is not displayed.
What i want is to make the slideshow displayed fullscreen in mobile view. just like this website http://klinsink.com/
Thank you
Since i cannot edit the message,
I want to revise the question.
What i want is to make The slideshow is not fully full screen as the header position is already in correct position, but i want to extend the slideshow so the buttons in that slideshow are shown.
Hello,
Use the following code to align slider content
.parallax-slide.small-slide .parallax-vertical-align {
position: static;
}
.parallax-slide.small-slide .swiper-slide {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
If you also want to increase slider height after that use the following
@media (max-width: 767px){
.parallax-slide.small-slide {
height: 500px!important;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up