I am currently using the Bootstrap 4 Alpha 6 carousel plugin to create an interactive div slider.
My goal is to position the transparent buttons on the extreme right and left sides of the slider, similar to what is shown in the image provided below.
https://i.sstatic.net/2iNm3.png
Despite attempting to change the positions and following advice from a previous post, I have not been successful in achieving the desired layout.
.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
right: 0;
}
.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
left: 0;
}
If anyone has any suggestions for the best approach to resolving this issue, I would greatly appreciate it. Thank you in advance!