Every time I adjust the size of my window, the slider buttons (next/previous) vanish and fail to stay aligned with the slider. Any suggestions for resolving this issue? JSFIDDLE:https://jsfiddle.net/b31kvqwr/
Button CSS:
#nav img {
position: absolute;
top: -10px;
cursor:pointer;
color:grey;
width:40px;
height:30px;
}
#prev {
margin-left: 530px;
font-size: 10px;
}
#next {
right: -30px;
margin-top: 13px;
}
PS: if the result in the jsfiddle doesn't show up, expand the result tab.
This is how the slider appears when at full screen (correctly positioned);
This demonstrates what happens when I resize the browser horizontally:
The buttons do not move along with the slider. Any assistance would be greatly appreciated?