Results 1 to 3 of 3

Thread: Customizing :: Lightbox image viewer 2.03a help needed

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

    Default Customizing :: Lightbox image viewer 2.03a help needed

    1) Script Title:
    :: Lightbox image viewer 2.03a

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

    3) Describe problem:
    I would like to change the way this script overlays on the page. Specifically, I don't want the page to darken when the image loads, such as with this script:
    :: Image Thumbnail Viewer
    http://www.dynamicdrive.com/dynamicindex4/thumbnail.htm

    I've been using the Thumbnail Viewer, but now need the ability to group images together.

    Thanks for a great website!

  2. #2
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    Maybe you can just change the css for the overlay background-color to transparent like this
    Code:
    #overlay {
    background-color:transparent;
    height:500px;
    left:0;
    position:absolute;
    top:0;
    width:100%;
    z-index:90;
    }
    it can be found in the lightbox.css around line 69

  3. #3
    Join Date
    Feb 2006
    Posts
    15
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by azoomer View Post
    Maybe you can just change the css for the overlay background-color to transparent like this
    Code:
    #overlay {
    background-color:transparent;
    height:500px;
    left:0;
    position:absolute;
    top:0;
    width:100%;
    z-index:90;
    }
    it can be found in the lightbox.css around line 69
    Thanks azoomer, that was a simple, painless, and perfect fix!

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
  •