I have this jquery slideshow but no navigation. at this point the navigation is numbering 1 2 3 (according to the number of slides). I would like to change it to button nav as attached.
Can anyone help me edit the JS file or show me how to (I hardly know js)?
Well, if possible I would like to attached the JS code (since it's 1500 line long) I also do not know what to search to change the navigation since I hardly know JS. I am a freelance web developer that's still new to JS. I have the design and need to create codes exactly like the design.
I tried changing the line but it doesn't add the button navigation. The slideshow already running (the picture keep changing automatically from one pic to the next. but the button navigation button is not functioning. How to create them ? The picture that I attached is simply picture the code for the button navigation button is not written yet. (only numbers navigation above it - which I plan to disable)
Here is the <script type="text/javascript" src="js/jquery.cycle.all.js"></script>
How to link the sprite background to the pager anchors ? Where is the pager anchors ? Are you sure the link won't open ? since I am able to open both link.
I have tried defining the navigation z-index higher then the slideshow. Instead of moving the navigation on top of the slides, it presses the slideshow downward. Besides that, I do not know how to erase the number navigation.
if you are using console look at generated html..will see that you have <a> as child of <ul> in pager which is invalid html and can also see css rules that apply
I used a pagerAnchorBuilder return that didn't include numbers but you can use css text indent to move them off screen also
If I add pagerAnchorBuilder: function(idx, slide) { return '<li><a href="#"></a></li>'; before: function() { if (window.console) console.log(this.src); } then, the slides scattered and the navigation disappeared.
you haven't closed the pagerAnchorBuilder function
I realize you said you weren't strong with javascript but brackets and commas are very important to follow proper syntax.
If you are using console you will see the script errors reported there and should see a syntax error. If you aren't using console your before function does nothing so just remove it.
I could rewrite your code but it would be a duplication of the demo and waste of time. Use a debugging console to look for errors. All I had to do was open your page and console showed me the problem immediately