Arrows not showing up in slideshow, not able to control back and forth in slideshow

So I have a slideshow that is on one of my pages and the arrows on the two sides will not appear.  Before the pictures all load I can see the arrows behind the pictures but once they the arrows end up behind the pictures.  The pictures rotate normaly through the slideshow but I want people to be able to control if they want to go back and forth.  Here is my code for the slideshow.
<script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="js/jquery.cycle.all.js"></script>
<script type="text/javascript">
          $('#slider').cycle({
    fx:     'scrollHorz',
    speed:  'slow',
          timeout: 3000,
    next:   '#next',
    prev:   '#prev'
</script>
<meta name="keywords" content="LADC Companies,commercial lawn service, services, snow removal, concrete romval, Home Depot, Kohl's">
<link href="CSS/styles.css" rel="stylesheet" type="text/css">
<style type="text/css">
#NavBar {
          height: 36px;
          width: 960px;
          margin-right: auto;
          margin-left: auto;
          margin-top: 102px;
          margin-bottom: 146px;
          border-top-style: none;
          border-right-style: none;
          border-bottom-style: none;
          border-left-style: none;
          position: absolute;
          left: auto;
          top: auto;
          right: auto;
          bottom: auto;
.titleservices {
          background-color: #30C;
          height: 50px;
          width: 700px;
          border: medium solid #000;
          margin-top: 176px;
          margin-left: 130px;
          position: absolute;
h1 {
          margin-top: 182px;
          margin-left: 160px;
          position: absolute;
          font-size: 36px;
          color: #FFF;
          font-weight: bold;
          font-variant: normal;
          text-transform: uppercase;
.leftside {
          background-color: #03F;
          height: 400px;
          width: 300px;
          border: medium solid #000;
          margin-top: 250px;
          margin-left: 50px;
          position: absolute;
          opacity: 0.75;
          filter: alpha(opacity=75);
.rightside {
          background-color: #03F;
          height: 400px;
          width: 300px;
          border: medium solid #000;
          margin-top: 250px;
          margin-left: 600px;
          position: absolute;
          opacity: 0.75;
          filter: alpha(opacity=75);
.background {
          background-color: #FFF;
          height: 912px;
          width: 244px;
          margin-top: 250px;
          margin-left: 356px;
          position: absolute;
          opacity: 0.30;
          filter: alpha(opacity=30);
.background2 {
          background-color: #FFF;
          height: 506px;
          width: 905px;
          margin-top: 656px;
          margin-left: 26px;
          position: absolute;
          opacity: 0.30;
          filter: alpha(opacity=30);
p1 {
          margin-top: 265px;
          margin-left: 55px;
          margin-right: 609px;
          position: absolute;
          font-size: 22px;
          color: #FFF;
          font-variant: normal;
          text-align: center;
          font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
p2 {
          margin-top: 265px;
          margin-left: 605px;
          margin-right: 60px;
          position: absolute;
          font-size: 21px;
          color: #FFF;
          font-variant: normal;
          text-align: center;
          font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
#apDiv1 {
          position: absolute;
          width: 222px;
          height: 165px;
          z-index: 1;
          left: 366px;
          top: 267px;
          border: thin solid #00F;
#wrapper {
          display: block;
          height: 483px;
          width: 879px;
          margin-top: 670px;
          margin-right: 41px;
          margin-left: 37px;
          position: absolute;
#slider {
          display: block;
          float: left;
          height: 483px;
          width: 879px;
          margin-top: 670px;
          margin-right: 41px;
          margin-left: 37px;
          overflow: hidden;
          position: absolute;
          left: -39px;
          top: -671px;
          border: medium solid #000;
#prev {
          background-image: url(Images/leftArrow.png);
          background-repeat: no-repeat;
          background-position: center center;
          display: block;
          float: left;
          height: 483px;
          width: 80px;
          position: relative;
          z-index: 10;
#next {
          background-image: url(Images/rightArrow.png);
          background-repeat: no-repeat;
          background-position: center center;
          display: block;
          float: right;
          height: 483px;
          width: 80px;
          position: relative;
          z-index: 10;
#contain {
          overflow: auto;
#apDiv2 {
          position: absolute;
          width: 222px;
          height: 165px;
          z-index: 1;
          border: thin solid #00F;
          left: 365px;
          top: 465px;
#apDiv3 {
          position: absolute;
          width: 200px;
          height: 115px;
          z-index: 1;
          left: 48px;
          top: 671px;
</style>
Here is the slideshow part of my code
<div id="wrapper">
  <div id="contain">
    <div class="controller" id="prev"></div>
              <div id="slider">
                         <img src="Images/IMG_2418 2.JPG" width="879" height="483" />
                  <img src="Images/IMG_2447 2.JPG" width="879" height="483" />
                  <img src="Images/IMG_2453 2.JPG" width="879" height="483" />      
                  <img src="Images/IMG_2603 2.JPG" width="879" height="483" />      
                           <img src="Images/IMG_2711 2.JPG" width="879" height="483" />                                                                       <img src="Images/IMG_2822 2.jpg" width="879" height="483" />                           
                  <img src="Images/IMG_2839 2.JPG" width="879" height="483" />                           
                  <img src="Images/IMG_2313 3.JPG" width="879" height="483" />                           
                  <img src="Images/IMG_2460 2.JPG" width="879" height="483" />                           
                  <img src="Images/IMG_2430 2.JPG" width="879" height="483" />                           
                  <img src="Images/DSC_0318.JPG" width="879" height="483" />
        </div>
    <div class="controller" id="next"></div>
  </div>
</div>
</div>
</body>
</html>

Try this with Cycle2 (new & improved version of Cycle).
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>HTML5 with Cycle2</title>
<!--helpf for older IE browsers-->
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!--Latest jQuery Core Library-->
<script src="http://code.jquery.com/jquery-latest.min.js">
</script>
<!--Cycle2 Slideshow Plugin-->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script>
<style>
/**Slideshow**/
.cycle-slideshow {
width:400px; /**adjust width as required**/
margin: 0 auto;
text-align: center;
.cycle-slideshow img {max-width:100%}
/* prev / next links */
.cycle-prev, .cycle-next {
position: absolute;
top: 0;
width: 20%;
opacity: 0;
filter: alpha(opacity=0);
z-index: 800;
height: 100%;
cursor: pointer;
.cycle-prev {
left: 0;
background: url(http://malsup.github.com/images/left.png) 50% 50% no-repeat;
.cycle-next {
right: 0;
background: url(http://malsup.github.com/images/right.png) 50% 50% no-repeat;
.cycle-prev:hover, .cycle-next:hover {
opacity: .7;
filter: alpha(opacity=70)
/**END SLIDESHOW STYLES**/
</style>
</head>
<body>
<!--begin slideshow-->
<div class="cycle-slideshow"
    data-cycle-fx="fade"
    >
<!-- prev/next links -->
<div class="cycle-prev"></div>
<div class="cycle-next"></div>
<!--insert your images below-->
<img src="http://jquery.malsup.com/cycle2/images/p1.jpg" alt="description">
<img src="http://jquery.malsup.com/cycle2/images/p2.jpg" alt="description">
<img src="http://jquery.malsup.com/cycle2/images/p3.jpg" alt="description">
<img src="http://jquery.malsup.com/cycle2/images/p4.jpg" alt="description">
<p>Mouse over image for previous / next links</p>
<!--end slideshow-->
</div>
</body>
</html>
Nancy O.

Similar Messages

  • Hyperlink (able to go back and forth) - doable?

    scenario: 4 crystal reports linked to each other through hyperlink
    report 1 > hyperlink to report 2 > hyperlink to report 3 > hyperlink to report 4
    requirement: when user is at any of the reports (1-4), they should be able to go back and forth through any of the reports.
    currently, report is always showing 'Main Report' in the report view list.
    is it even doable?  if so, how to do it?

    If you add
    &sWindow=New
    to your opendocument link, it will open new report in a new browser window.
    Will it help?

  • I've lost the arrows on my Safari toolbar that allow me to browse back and forth on web pages. Any  solutions guys?

    I've lost the arrows on my Safari toolbar that allow me to browse back and forth on web pages. Any  solutions guys?

    Thanks everyone! Felt a complete twit. Went to view, customize toolbars and then dragged the arrows back into the toolbar.  No idea how we lost 'em though.

  • I want Firefox to not be so wide so I need to scroll back and forth with much needed larger text

    I want to have large text, but narrower windows. Every time I need to make text larger for certain sites; it makes my viewing window wider so I have to scroll back and forth to read. I once had an add on to keep the window the same size in width, just with longer windows, which I don't mind. I can't remember what it was called. Therefore I can't find it to download.
    Please help.

    Thanks for the help, Gryllida, I've tried the zooming in/out feature, but it seems to only work on the headers or headlines on some sites; and still the reading text stayed small. I think I'll try the extension instead.
    Boy, I do remember using Opera too.
    My new computer came yesterday, I'm going to install Ubunbtu instead of windows. It's a barebones kit.
    ☺♥

  • Is there a way to have Safari not reload the page when moving back and forth?

    I really like being able to swipe back and forth in Safari, however when I do this, it reloads the page. Why? Can't it just used the cached content? I understand that my view my be 'outdated', but I could always manually refresh if I wanted to.
    The reason I want this is because when you swipe back, it takes a few seconds before you can actually scroll the page while you wait for it to load, which is annoying

    Might be a cache issue ...
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.

  • My MacBook Pro was stolen last night. I need the serial number. It is not showing up on my devices list. My iPads and iPhones are. I have used it to to sync my phones and pads as well having it registered with apple. Any thoughts? Thanks

    My MacBook Pro was stolen last night. I need the serial number. It is not showing up on my devices list. My iPads and iPhones are. I have used it to to sync my phones and pads as well having it registered with apple. Any thoughts? Thanks

    Click here: https://supportprofile.apple.com/MySupportProfile.do
    SIgn in with your Apple ID, the same one you used to access this support forum.
    Hopefully, you will see a list of all the devices you registered with your Apple ID, including their serial numbers. Let me know how this works out.
    Edit to add: If you enabled "find my imac" on your Pro, you ought to be able to remotely lock it, or even wipe its memory. Click http://www.icloud.com/ sign in with your Apple ID and click the big green "find my iPhone" icon (nevermind the name, it will find all your devices provided they're running Lion or iOS 5).
    Then file a police report and nail the b*****d.

  • IPhoto is not showing photos stored in albums in the last week, and when I add recent photos, they don't show, or show as black.

    iPhoto is not showing photos stored in albums in the last week, and when I add recent photos, they don't show, or show as black. What's happening ?  I show an incompatible upgrade available for OSX Maveriks, which I have not yet installed.

    What version of iPhoto are you using?  Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • I read the article on how to remove Bing; however, it does not show up on my list of installed programs and it does not show up in the list of extenstions under "Tools" and "Addon" yet it is installed as an extention to the right of the addlress line.

    I read the article on how to remove Bing; however, it does not show up on my list of installed programs and it does not show up in the list of extenstions under "Tools" and "Addon" yet it is installed as an extention to the right of the addlress line. It is not my home page. Help!!!

    See also:
    *https://support.mozilla.com/kb/Removing+the+Search+Helper+Extension+and+Bing+Bar
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Resetting_preferences

  • My ipod touch is not showing in itunes therefore, not syncing. I've gone through the trouble shooting steps about 5 times.

    My ipod touch is not showing in itunes therefore, not syncing. I've gone through the trouble shooting steps about 5 times.

    Did you try here:
    iOS: Device not recognized in iTunes for Mac OS X
    If you  have iTunes 11 turn on the Sidebar. Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar. The sidebar is where Devices appears. and Control+B to show the Menu bar
    Next try on another computer to help determine if you have an iPod or computer problem.

  • My iPod touch 4 is not operating. Whenever I try to type in my pssword, the logo shows up. And this just goes back and forth. What should I do??

    This started a week ago, I turned off my ipod, and it could not be turned back on again. So I held the sleep button and the home button simultaneously for ten seconds, and my iPod responded, the logo appeared. And my iPod worked perfectly for a week, when the same problem appeared last night, I tried to use the tip which I used last week. But a new problem appeared. The logo showed up, and when I tried to type in my password, the logo appear on the screen again, and this just goes back and forth. I can't type in my password. This is driving me crazy, Pleeeeaze, someone please help me!!!!

    Have you tried connecting the iPod to your computer and restoring the iPod?

  • I have a problem in the program update is not showing me e-mail not my

    I have a problem in the program update is not showing me e-mail not my

    Open Terminal.app located in Utilities folder in Applications folder.
    Once Terminal is running use this command followed by hitting the return key.
    drutil eject<hit return key>
    CD/DVD should pop out.
    Lou Cioccio

  • When I start it up it shows two two nested windows on the screen, has a Firefox yellow tab in the corner, does not display the toolbar bookmarks, the back and forth buttons do not work and there is no page refresh. No clue what is going on.

    Every time I open up Firefox it appears to open two nested and linked windows, each with their own minimize, maximize and close buttons but the both work the same. The homepage does not come up, the back and forth buttons do not work. Both the refresh button and F5 do not work. The Bookmark Toolbar does not show up until I disable it in View and then re-enable it and this causes the outer nested window to disappear or close.

    This issue can be caused by an extension or theme that isn't working properly.
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • I have added two new extension on CUCM, Directory not showing in attendant console even after resynch on CUCM and attendant cosn

    I have added two new extension on CUCM, Directory not showing in attendant console even after resynch on CUCM and attendant cosnole
    Any idea?

    Hello,
    Can you tell us what versions of CUCM and CUxAC you are using?  Just extensions alone in CUCM will not sync to the corporate directory within the attendant console application.  You will at least have to have user's associated with those extensions and depending on your rule set within the console that should then bring those extensions into the console directory.
    Thanks,
    Tony

  • My lightroom navigation bar is not showing up. How do I get it back?

    My lightroom navigation bar at the top is not showing up. How do I get it back?

    Try the F key.  You may have set Full-screen mode.

  • I was using my ipad it was under 10% but no under 4% it turned off then i pluged the charger in and flashed on then showed apple sign after i turned it on. now its going back and forth from the apple sign and battery symbol ive changed chargers its not on

    hey please help!
    i was using my ipad it was under 10% but no under 4% it turned off then i pluged the charger in and flashed on then showed apple sign after i turned it on. now its going back and forth from the apple sign and battery symbol ive changed chargers its made no differnce its been like 3 hours ive tried to do that reset thing holding lock button and home button for 10 seconds at the same time. WHAT DO I DO?

    Could be the charger, cable or iPad. Plug the USB cable into your computer. It may say "Not Charging", however, it is charging slowly and will verify that the cable is good.
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    The quickest way (and really the only way) to charge your iPad is with the included 10W or 12W (5W on Mini) USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (2.5W, most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    iPhone: Hardware troubleshooting (Power/Battery section also applies to iPad)
    http://support.apple.com/kb/TS2802
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    iOS 7 Battery Life Draining Too Fast? It’s Easy to Fix
    http://osxdaily.com/2013/09/19/ios-7-battery-life-fix/
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    iPad: Charging the battery
    http://support.apple.com/kb/HT4060
    Best Practices for iPad Battery Charging
    http://www.ilounge.com/index.php/articles/comments/best-practices-for-ipad-batte ry-charging/
    Tips About Charging for New iPad 3
    http://goodscool-electronics.blogspot.com/2012/04/tips-about-charging-for-new-ip ad-3.html
    How to Save and Prolong the battery life of your new ipad
    https://discussions.apple.com/thread/4480944?tstart=0
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
    iPhone, iPod, Using the iPad Charger
    http://support.apple.com/kb/HT4327
    Install and use Battery Doctor HD
    http://itunes.apple.com/tw/app/battery-doctor-hd/id459702901?mt=8
    To Extend a Device’s Battery Life, Get to Know It Better
    http://tinyurl.com/b67c7xz
    iPad Battery Replacement
    http://www.apple.com/batteries/replacements.html
    In rare instances when using the Camera Connection Kit, you may notice that iPad does not charge after using the Camera Connection Kit. Disconnecting and reconnecting the iPad from the charger will resolve this issue.
     Cheers, Tom

Maybe you are looking for

  • COPA DS enhancement

    Hi, I want to enhance COPA DS. Normally the operating concern has to be modified and the the COPA DS needs to be recreated after deleting the old one. But my client doesnt want that operating concern should be touched. he is ok if i append the extrac

  • Is this a JOGL bug with GLJPanel, a driver problem, or what?

    I've been trying to eliminate a problem I've been experiencing with my WorldWind Java (WWJ) application and I think I've finally taken a step torward finding the root cause, but I'm not sure whose problem it is yet or who to report it to, so I though

  • How to personalization Actions List for Sales Order Form

    Hi experts, There is requirement that we need to enable/disable the Perform acceptance value from the Actions LOV. If the user didn't upload the attachment for this order, we need to remove the Perform acceptance value from the Actions LOV. otherwise

  • Final cut generator in motion 5.1

    I can't save the category in final cut generator in motion 5.1? Is posible to lock and unlock publish?

  • How to render SMIL application in Midlet ?

    Hi.. I am going to develop MMS (Multimedia Messaging Service) application. Now, JCP has released final proposed draft that specify JSR 205 WMA and make J2ME support for sending and receiving MMS message. An important thing in MMS application is prese