Hello David,
Glad you like the theme.
- Please go to Appearance >> Customize >> Custom CSS and JS >> Custom CSS box and add the CSS below inside custom CSS box:
@media only screen and (min-width: 992px){
.trip-info #tour-slide {
position: relative;
height: 94vh;
left: -15px;
width: 100%;
}
}
- This is not available in customization options, however, you can achieve this by logging in via FTP and navigating to wp-content >> themes >> entrada >> js and then inside js folder, you will see jquery.main.js file. Download this file on local computer.
Next search for tour-slide in this file or just go to line 648 and you will see a code block like:
$("#tour-slide") // Tour Detail Carousel
.owlCarousel({
navigation: true,
slideSpeed: 300,
paginationSpeed: 400,
singleItem: true,
touchDrag: false,
pagination: false,
mouseDrag: false
});
Replace the code block above with the code block below:
$("#tour-slide") // Tour Detail Carousel
.owlCarousel({
navigation: true,
slideSpeed: 300,
paginationSpeed: 400,
autoPlay: 3000,
singleItem: true,
touchDrag: false,
pagination: false,
mouseDrag: false
});
And now save this file and upload it back to wp-content >> themes >> entrada >> js folder replacing the existing jquery.main.js file with the new one.
Thank you