Arrows not showing up in slideshow, cant control 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>

Pretty sure this is just a duplicate of this one: http://forums.adobe.com/thread/1310212?tstart=0

Similar Messages

  • 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.

  • Named Criteria created, but it does not show up in the Data Controls view

    Hello there,
    I wish to use a data-bound ADF Mobile ListView in one of the pages on the app. However, only entries of the underlying data that fulfill a certain condition shall be displayed in the list. The condition basically is an "Equals" test against a bind variable in the pageFlowScope. Therefore, I have created a corresponding Named Criteria for the data control - proceeded like described here:
    https://blogs.oracle.com/adf/entry/create_named_criteria_in_ejb
    The Named Criteria, in my case, has been created and saved, yet it does not show up in the Data Controls view of JDeveloper. Therefore, I cannot drag it on a UI element to use it.
    I only have the "Operations" folder where the quick guide above also shows a "Named Criteria" folder.
    Refreshing or restarting JDeveloper did not solve this.

    It was all taken care of by Gaurav Aggarwal
    He got me all fixed up, Thank you for your concern.
    Daniel Walters

  • When I "enhance" a photo, it does not show up in slideshow, it is just black

    When I "enhance" a photo, it does not show up in slideshow, it is just black.  I am using Iphoto.  I also can't email these "enhanced" photos.

    There are several possible causes for the Black Screen issue
    1. Permissions in the Library: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to check and repair permissions.
    2. Minor Database corruption: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    3. A Damaged Photo: Select one of the affected photos in the iPhoto Window and right click on it. From the resulting menu select 'Show File (or 'Show Original File' if that's available). Will the file open in Preview? If not then the file is damaged. Time to restore from your back up.
    4. A corrupted iPhoto Cache: Trash the com.apple.iPhoto folder from HD/Users/Your Name/Library/ Caches...
    5. A corrupted preference file: Trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    If none of these help:
    As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • OS X not showing up in boot camp control panel

    Hi, I am using mac book pro with OS X mavericks. Recently I installed windows 8.1 with boot camp assistant. It  was all running fine. I partitioned my windows 8.1 drive to a new volume. When I did this,my OS X disappeared in bootcamp control panel. It not showing up in the list of OS's when we boot the machine. any help would be appreciated. Thanks.

    If you are not seeing the OS X partition while holding down the option/alt key during a restart, it appears your Boot Camp installation damaged the OS X partition, which is probably why it is not showing up in the Boot Camp control panel.
    Do a backup. Boot to the Recovery Volume (command - R on a restart or hold down the option key during a restart and select Recovery Volume). Run Disk Utility Verify/Repair and Repair Permissions until you get no errors. Then select the Macintosh HD partition and re-install the OS.
    OS X Recovery
    OS X Recovery (2)

  • Red Arrows not showing in debug mode

    Hi Experts,
    I have a few processes running in my scenario dropping messages on a queue.
    For some reason only the main trigger shows red arrows and the rest does not ?
    Does someone have an idea how I can solve this because I need to debug those parts but I can't see that red arrows.
    Kind Regards,
    Brenden Draper

    Hi All,
    To explain the complete process...
    The file comes in and is put to the ASN queue.
    1. The ASN scenario is fired putting the same result to a ProcessASNMod1.1 and ProcessASNMod1.2 queue.
    2. ProcessASNMod1.1 scenario is fired putting a result message to a ProcessASNMod2 queue.
    3. ProcessASNMod2 scenario is fired.
    4. ProcessASNMod1.2 is fired.
    And I am only able to see the debug arrows in the ASN and the ProcessASNMod2 scenarios.
    ProcessASNMod1.1 and ProcessASNMod1.2 arrows does not show.
    Can any one tell me why this would happen ?
    Kind Regards,
    Brenden Draper

  • IMac does not show open windows in Mission Control

    Ever since I installed Mountain Lion on my 2008 iMac 24", I've had a problem in Mission Control where the Desktop that the OS boots into will not show a preview of any windows open in that desktop. I have a new 2012 MacBook Air that does not have this problem. I thought the 10.8.1 update might fix it but no luck. Originally, I upgraded from Snow Leopard but eventually did a clean install and manually restored documents so that all the preferences/system files would be fresh, but still no luck.
    A screenshot of what I mean is attached. I have FF open in desktop 1, but it does not show at the top, whereas all other desktops show window previews.
    Has anyone else had this problem and have you managed to fix it?

    I dont use the Trackpad, just a mouse. Moments after I typed it, the answer was suggested already:
    CTRL+Mission Control button does exactly what I want.
    Is it possible to reconfigure this shortcut to the Snow Leopard way? (Pushing and holding the mouse button on an app in the dock for the same results)
    Thanks,

  • Rotated photos not showing up in slideshow

    Hello all -
    I'm making a photo slideshow with iDVD and photos imported from iPhoto. The photos taking from the camera with the camera rotated 90 degrees are showing up fine as thumbnails in the iDVD menus, but not displaying at all in the slideshow when I run it. It shows the comments and title text but the photo is blacked out. Again, it is only the photos rotated not the standard ones. Any idea?
    I'm running 10.4.7 with iLife 06.
    - Greg

    Doesn't show up in the interface at all.  I only realized they were missing when I checked my iPhone pictures against iPhoto and realized that there were pictures missing.  I even ran the iPhoto database rebuild and some of the other diagnostics that suggested they might find these type of situations.  It actually found a few but I still have the 300 or so I reference above. Any idea what might be going on?

  • IDvd Photos Are not showing up in slideshow

    I am trying to make a simple slideshow DVD with 38 fireworks pixs from the 4th. I have put the pictures in the proper place. There are no error messages. When I press the arrow to preview them the first one shows up, I then get a few blank (white screens) and then a few more show up and then some more blanks. What am I missing? Thanks, Ron
    They are a mixture of tiff and JPegs.

    I am trying to make a simple slideshow DVD with 38 fireworks pixs from the 4th. I have put the pictures in the proper place. There are no error messages. When I press the arrow to preview them the first one shows up, I then get a few blank (white screens) and then a few more show up and then some more blanks. What am I missing? Thanks, Ron
    They are a mixture of tiff and JPegs.

  • Iphoto pictures not showing up in slideshow

    I only have 19 pictures in my iphoto library--created from different "rolls" from emails. When I create a slide show of these pictures (from either the iphoto library of from an album that currently has the same 19 pictures), four of the pictures don't show up in the slideshow. In the slideshow preview, they appear "gray" (and the picture flashes behind the gray for less than a second), and when viewing the slideshow, these four pictures view as black. These four pictures view just fine from either the iphoto library or from the album. Why is this happening, and what are my options to get this resolved?

    Riona:
    Welcome to the Apple Discussions. When I've tried to duplicate and the fix the problem I've not had any success. You can try rebuilding the library using iPhoto Library Manager. It does not touch or modify the original library. Here's how:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    In the next window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: It can take some time to create the new library if you have a lot of photos. One user reported that with a library of about 5,000 images it took about 12 hours so plan ahead.
    If that doesn't solve the problem the only way to get a working library that I know of is to start a new library and import the Originals folder from the old one. Here's how:
    1 - first, to salvage your keywords, follow the workflow in Tutorial #1. If you don't care about losing the keywords you can skip this step.
    2 - move your existing library to the desktop.
    3 - move the Originals folder from that library folder to the desktop.
    4 - launch iPhoto and, when asked, select the option to create a new library.
    5 - drag the Originals folder from the desktop into the open iPhoto window.
    This will give you your photos back and in the same rolls that they were in the original library. The roll dates may be different but can be edited in the Information window at the bottom of the Source pane as you would edit file names.
    In the future I recommend that you make a backup copy of the Library6.iPhoto file that's in the iPhoto library folder. This contains all of the information needed by iPhoto to construct the library and is the file that usually gets corrupted and causes the exclamation mark issue. Keep the backup current, i.e. after any import into iPhoto.

  • Yahoo mail attachments will not show in View Slideshow

    receiving mail Yahoo shows two options for attachments - View Slideshow and Download. When trying to View Slideshow, loading gears keeps spinning and spinning but never loads using Firefox 8.0.1
    Cache and cookies are cleared regularly and again just now - still no luck. Addons are disabled - still no luck. So Yahoo Customer Care says problem is with Firefox, since it will load on Safari.

    I'm with BT Internet which uses Yahoo's Neo Mail and have the same problem (plus others). This applies to every browser I have tried (Firefox, Safari, Chrome, SeaMonkey, Camino, Opera).
    I sometimes find opening, closing, re-opening an email prods the slideshow into action.
    Problems include: email thumbs don't show pics (slideshow thumbs usually do), pictures will not load in slideshow, if they do only first eight or so load (sometimes cured by scrolling through thumbs in email).
    Also slideshow crops many pictures, but is OK full screen.
    This is on Macs running 10.6.8 and 10.4.11 with latest versions of Firefox/TenFourFox.
    Googling shows other people have this problem.

  • How to not show videos in slideshow

    Hi. Just updated to iphoto '09, and I notice that when I play a slideshow for an event, it also plays the videos embedded in the event. iphoto '08 skipped over these. Is there any way to make iphoto '09 do that as well? I like just showing the photos when I want to quickly view a slideshow. Thanks!

    so I'll need to move the videos for each event to it's own seperate event in order to play a slideshow without them, correct?
    Or make Albums without them. For instance how about a Smart Album like
    File -> New Smart Album
    Event -> Contains -> Name of Event
    +
    Keyword -> is not -> Movie
    Will find all the photos in that Event and not the videos.
    I think a meaningful update to the product would be to have a slideshow setting where you could check or uncheck a box that said "play videos in slideshow," don't you agree?
    As it happens, no, but you know, I never use that feature anyway
    Seriously: Let the Developers know what you think
    iPhoto menu -> Provide iPhoto Feedback
    Regards
    TD

  • Message Status Arrow not showing when forwarding or replying to mails.

    When you reply to or forward a mail message the message status shows an arrow sign (straight or curved) to indicate that a particular mail has been addressed. When you click on this arrow you are taken to your reply or forwarded message.
    I have a problem here: For most mails this works fine. But when I get mails from within my own organization sent through outlook and when I reply to them the arrows in the message status box do not appear. When outlook is not used and the mail is sent directly from the server.... then arrows are displayed on my replying to these mails.
    Presuming:
    My id is [email protected] (user of Mac Mail)
    My colleagues are [email protected] and [email protected] (both user of Windows Outlook)
    Pl advise

    ditto same problem, although in my case its applied to ALL replied / forwarded emails. The replied message never comes up when you click the arrow.

  • Preview arrows not showing in web search

    I have noticed today that when I am searching the web the preview arrows are missing so unable to preview a page quickly before deciding to open. Can anyone help, has anything changed with Safari?  (Normally use Google) Any help appreciated!

    Yours lists your episodes just the same as his if you go to the link I gave you:
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=295197414
    However your durations all show as 1:01 because that is what is entered in the feed file in the 'itunes:duration' tag; you should amend these to show the actual length.
    As to the feed URL, which appears to be
    http://www.biblestudyradio.org/?feed=rss2
    This isn't the URL of the actual file but a script pointing to it. I see you have created all this in PodPress so that's created your feed file. Possibly they submit the real URL to iTunes - anyway, as it's working I should leave it alone. (When submitting a feed manually iTunes tends to reject anything with a query sign in the URL, but you seem to be OK).

  • Revisit page arrows not showing on screen....how to get

    This version of Firefox does not have revisit arrows on my screen.
    This is very frustrating. Is it a fault with this download, or is it just my computer?
    Help on how to rectify this much appreciated.
    Have uninstalled and then installed again. Same result.

    You are welcome.

Maybe you are looking for