December 4, 201312 yr The top left hand corner of the page. There are two small broken image links. I have a script on the page, what those small broken image links are suppose to do is scroll the text vertically, what am I doing wrong that it's not working ?
December 4, 201312 yr You have a 404 error for the images, so you may have just uploaded them to the wrong directory? Also "section one" appears to be used as a class and not an id on the page, so maybe try using getElementsByClassName('section one')[0] on line 12.
December 4, 201312 yr Author You have a 404 error for the images, so you may have just uploaded them to the wrong directory? Also "section one" appears to be used as a class and not an id on the page, so maybe try using getElementsByClassName('section one')[0] on line 12. I replaced getElementsByID to getElementsByClassName, not working. I know the images are missing for the time being pretend they are they, the script should function without images.
December 7, 201312 yr Author This is what I want it to do. How come it's not working, the script is in the head, the only thing could be this, maybe (ignoring the missing up and down images) that is causing it not to work ? <img class="Scrollbar-Up" onmouseout="scroller.stopScroll();" onmouseover="scroller.startScroll(0, 5);" src="images/up_arrow.gif"> <img class="Scrollbar-Down" onmouseout="scroller.stopScroll();" onmouseover="scroller.startScroll(0, -5);" src="images/down_arrow.gif">
Create an account or sign in to comment