I am facing an issue with positioning a small icon over a slider using HTML and CSS. The problem arises because both the slider and the icon have a position absolute, causing the slider to hide the icon.
Here is the CSS code for the icon:
#nav {
position:absolute;
left: 49%;
top: 89%;
}
I did notice that removing the slider from the javascript file allows the icon to display as intended, but it causes the sliders to stop functioning. How can I ensure that the icon is placed over the slider while maintaining the functionality of the sliders?