Hello I just installed Lightbox2 on my html site and the Lightbox2 is working fine. But what I want to do is: I have 1 link name portfolio and when I click this link I want that Lightbox2 open image and there must be NEXT or PREV button to see more pictures My current code opens just 1 picture <a href="images/picture.png" rel="lightbox" class="link" title="My Work">Portfolio.</a> Code (markup):
If you have a set of related images that you would like to group, include a group name between square brackets (highlighted in bold) in the rel attribute. For example: <a href="images/image-1.jpg" rel="lightbox[B][portfolio][/B]">image #1</a> <a href="images/image-2.jpg" rel="lightbox[B][portfolio][/B]">image #2</a> <a href="images/image-3.jpg" rel="lightbox[B][portfolio][/B]">image #3</a> Code (markup):
I dont't want this. I just want 1 link to click and than Lightbox should load all pictures so I can click next and prev. REMEMBER ALL IN 1 LINK.
Did you try this? <a href="images/image-1.jpg" rel="lightbox[portfolio]">image #1</a> <a href="images/image-2.jpg" rel="lightbox[portfolio]"></a> <a href="images/image-3.jpg" rel="lightbox[portfolio]"></a> Code (markup):
Yeah now is working but I have another probelm I will show a picture At close button there is little slider when I have only 1 picture in Lightbox everything was cool. Any solution ?
Some dummy text Some dummy text Some dummy text Some dummy text Some dummy text <a href="images/1.png" rel="lightbox[portfolio]" class="link" title="My Work">portfolio.</a> </p> <a href="images/2.png" rel="lightbox[portfolio]"></a> <a href="images/3.png" rel="lightbox[portfolio]"></a> Code (markup): And I change images directory in lightbox css #lightbox{ position: absolute; left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;} #lightbox img{ width: auto; height: auto;} #lightbox a img{ border: none; } #outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; } #imageContainer{ padding: 10px; } #loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; } #hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; } #imageContainer>#hoverNav{ left: 0;} #hoverNav a{ outline: none;} #prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:images/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; } #prevLink { left: 0; float: left;} #nextLink { right: 0; float: right;} #prevLink:hover, #prevLink:visited:hover { background: url(images/prevlabel.gif) left 15% no-repeat; } #nextLink:hover, #nextLink:visited:hover { background: url(images/nextlabel.gif) right 15% no-repeat; } #imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100% ; } #imageData{ padding:0 10px; color: #666; } #imageData #imageDetails{ width: 70%; float: left; text-align: left; } #imageData #caption{ font-weight: bold; } #imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em; } #imageData #bottomNavClose{ width: 66px; float: right; padding-bottom: 0.7em; outline: none;} #overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; } Code (markup):
hmmmm strange in Google Chrome works everything fine in IE I can veiw first picture in new tab in Firefox some strange issue at close button