Results 1 to 3 of 3

Thread: Another problem with NEXT/PREV buttons in Lightbox

  1. #1
    Join Date
    Nov 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation Another problem with NEXT/PREV buttons in Lightbox

    1) Script Title: Another problem with NEXT/PREV buttons in Lightbox 2.04

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

    3) Describe problem: Hello. I read all the topics from this forum that describe the same problem: NEXT and PREV buttons don't want to showing up when I view my photo gallery. I see only CLOSE and X, and the text description below the photo. I try to locate exactly the images folder on the lightbox css file but I don't resolved the problem. My website is: http://www.liviufratila.ro/foto.html
    The css code of the lightbox file is:

    Code:
    #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:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
    #prevLink { left: 0; float: left;background: url(images/prevlabel.gif) left 15% no-repeat;}
    #nextLink { right: 0; float: right;background: url(images/nextlabel.gif) right 15% no-repeat;}
    #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; }
    Must to edit the lightbox.js file? Or simply the lightbox css???

    Thank you,
    Last edited by Lyvyoo; 11-03-2009 at 02:29 PM.

  2. #2
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    Your link for for the images is incorrect.

    transparent url(/images/nextlabel.gif) no-repeat scroll right 15%

    The public html folder is just for your ftp.

    That goes here
    Trick IE into showing hover */ display: block; }
    #prevLink { left: 0; float: left;background: url(/public_html/images/prevlabel.gif) left 15% no-repeat;}
    #nextLink { right: 0; float: right;background: url(/public_html/images/nextlabel.gif) right 15% no-repeat;}
    #prevLink:hover, #prevLink:visited:hover { background: url(/public_html/images/prevlabel.gif) left 15% no-repeat; }
    #nextLink:hover, #nextLink:visited:hover { background: url(/public_html/images/nextlabel.gif) right 15% no-repeat; }


    the code you have above is not in your live css.

  3. #3
    Join Date
    Nov 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thx!!!!!
    RESOLVED!

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
  •