I have implemented the stack slider plugin for my website, which can be found at this link: https://github.com/dpesofficial/stack-slider
Although most of the changes I made in HTML and CSS are working correctly, there are a few issues that need to be addressed:
- The text appears blurry after the modifications.
- The navigation feature does not loop as demonstrated in the Github demo. Also, at the end of the navigation, the slider does not maintain full scale.
If anyone has insights on why these issues occurred and possible solutions, please share your thoughts.
jQuery(document).ready(function($) {
$("#slider").stack_slider({
autoPlaySpeed: 6000,
autoPlay: false,
dots: false,
arrows: true,
drag: false,
direction: "vertical"
});
});