Currently I am working on integrating two sliders into one webpage using the demo available at . One of the sliders is customized from the Linking demo and I have named them slider1 and slider2 with different styling using global.css for slider-1 and text.css for slider-2.
After inspecting the slides.min.jquery.js
file, it became apparent that it utilizes CSS elements such as slides_container
, next
, prev
. To accommodate my customizations, I created a new file called slider.text.jquery.js
where I replaced these CSS elements with slides_containerT
, nextT
, and prevT
based on the styles defined in text.css
. However, the code is not functioning as intended. Any assistance would be greatly appreciated as my project deadline is approaching.
Can anyone provide guidance on how to modify the slides.min.jquery.js
file to incorporate both the styles from global.css
and text.css
for pagination?
Thank you, Pam