If you are not using a child-theme, then it is recommended that you do. But here is what you will have to do: you need to edit files - such as header.php, footer.php, styles.css and the file where you would like you slider to go (page.php)
Add this to your header, just above styles.css:
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
Add this code to your footer.php (I have also included jquery, you may not need to):
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js"></script>
<script>
$('.main-carousel').flickity({
cellAlign: 'left',
contain: true
});
</script
This goes at the bottom of your styles.css:
.carousel-cell {
width: 100%; /* full width */
height: 300px;
background: #222;
/* center images in cells with flexbox */
display: flex;
align-items: center;
justify-content: center;
}
.carousel.is-fullscreen .carousel-cell {
height: 100%;
}
And finally this is what displays your slider (this goes wherever you would like your slider to display - with link to the images you would like to use):
div class="main-carousel">
<div class="carousel-cell"><img src="https://source.unsplash.com/random/1197x458"></div>
<div class="carousel-cell"><img src="https://source.unsplash.com/random/1198x457"></div>
<div class="carousel-cell"><img src="https://source.unsplash.com/random/1199x456"></div>
</div>
You can see the slider in effect here