Results 1 to 3 of 3

Thread: frame for slideshow

  1. #1
    Join Date
    Dec 2006
    Posts
    38
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question frame for slideshow

    1) Script Title: Ultimate Fade-in slide show (v1.5)

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...nslideshow.htm

    3) Describe problem:
    here is a link ....
    http://www.easyto.eu/estonia/tallinn/tallinn.htm

    when mouseover any of the button, you'll see the slideshow without a frame. when you try to mouse over second time on the same buttom - you'll see the photos in the frame.

    What is the part of the script I have to change to show the frame around the photo at fist time when mouseover??

    thatnk you.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    I see that you still haven't validated your page. This makes it difficult to be certain what should be done to change this. However, here is what would work for a valid page and probably will here as well. Where you have this and similar:

    Code:
    <div id="image_Area_2" style="position: absolute;left: 510px; top: 343px;border:2px solid #696969;width:76px;height:50px;display:none">              
    <script type="text/javascript">
    //new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
    new fadeshow(fadeimages2,150, 105, 0, 1000, 9, "")
    </script>
    </div>
    get rid of the blue part and change the red zero to a 2.

    Now, in your style section, add:

    Code:
    #image_Area_2 img {
    border:2px solid #696969;
    }
    Notes: This must be done for each division containing a slide show call. Your current style section looks like so:

    Code:
    <style type="text/css">
    .menutitle{
    cursor:pointer;
    margin-bottom: 5px;
    background-color:CCCCCC;
    color:#000000;
    width:140px;
    padding:2px;
    text-align:center;
    font-weight:bold;
    /*/*/border:1px solid #000000;/* */
    }
    
    .submenu{
    margin-bottom: 0.5em;
    }
    </style>
    Last edited by jscheuer1; 04-01-2007 at 03:20 PM. Reason: Spelling and Punctuation
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Dec 2006
    Posts
    38
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank you , it works !

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •