I use react-bootstrap to make the carousel, and I want to move the caption and indicators below the image. The caption part is simple, since I just needed to apply the code below as a className.
carouselCaption: {
position: 'relative',
left: 'auto',
right: 'auto'
}
Problem appears with indicators, since I don't have direct access to them in code, like I do with <Carousel.Item>
So here's my question, how would I go about doing it? There is quite a lot of answers for bootstrap, but I haven't found a helpful one for react-bootstrap