I am having trouble getting the carousel indicators to be clickable on my Boostrap 4 carousel, unlike in the examples I have seen. It seems like this feature should work out of the box, but for some reason it's not working for me. I simply copied the carousel code from the official Bootstrap documentation and added my content. I want the text on the indicators to be clickable for each slide. Can anyone help me figure out what went wrong?
.carousel-indicators {
background-color: blue;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" />
<section class="drinks_menu">
<div class="container">
<div id="drinks_carousel" class="slide" data-ride="carousel">
(REST OF THE CODE HERE...)