Results 1 to 4 of 4

Thread: Lightbox image viewer (prev/next issue)

  1. #1
    Join Date
    Jan 2009
    Posts
    17
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default Lightbox image viewer (prev/next issue)

    1) Script Title: Lightbox image viewer 2.03a

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

    3) Describe problem: Everything is working great with this script except when I group images I cannot see the next/prev button. The next/prev feature is working but I can't see the buttons. The lightbox.js and the related files are in a different folder so I had to change some URLs both in the CSS & the JavaScript. I made sure the URL to the prev/next images are correct in the CSS file; I haven't been able to find another location for them to be updated. I also did try putting the files in the same folder as the pages to no avail. The website URL is http://www.cabinetinteriors.com/gallery/kitchens/ . I have the script enabled on the first five thumbnail images.

    Thanks,
    Dave

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    In your CSS try replacing:
    Code:
    #prevLink { background: url(../lightbox2/images/prevlabel.gif) left 15% no-repeat; }
    #nextLink { background: url(../lightbox2/images/nextlabel.gif) right 15% no-repeat; }
    With:
    Code:
    #prevLink { background: url(../../lightbox2/images/prevlabel.gif) left 15% no-repeat; }
    #nextLink { background: url(../../lightbox2/images/nextlabel.gif) right 15% no-repeat; }
    And if that doesn't work:
    Code:
    #prevLink { background: url(http://www.cabinetinteriors.com/gallery/lightbox2/images/prevlabel.gif) left 15% no-repeat; }
    #nextLink { background: url(http://www.cabinetinteriors.com/gallery/lightbox2/images/nextlabel.gif) right 15% no-repeat; }
    Jeremy | jfein.net

  3. #3
    Join Date
    Jan 2009
    Posts
    17
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default

    Perfect. Thanks so much. I did that same thing on all the other links too. I guess I hadn't noticed that.

    Thanks again.

    Dave

  4. #4
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Your welcome - glad to help you.
    Jeremy | jfein.net

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
  •