Results 1 to 2 of 2

Thread: Conveyor Belt Slideshow

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

    Default Conveyor Belt Slideshow

    This slideshow works really well. However, I need to change the colour of the outline around each image from the pre-set blue to something else. I've looked through the code and I can't see where the blue colour is specified. Can someone please advise! Thanks

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question. In this case, that's http://www.dynamicdrive.com/dynamici...rightslide.htm.


    You can use CSS to colorize the border color of the image links. Firstly, add the below to the HEAD:

    Code:
    <style type="text/css">
    
    .cslideshow a img{
    border-color: green;
    }
    
    </style>
    Then, change the line:

    Code:
    document.write('<table border="0" cellspacing="0" cellpadding="0" class="cslideshow" ><td>')
    The part in red is new.

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
  •