I am using the lightbox from this site but when viewing the images i need the next and previous to remain visible, how can this be achieved?
thanks
I am using the lightbox from this site but when viewing the images i need the next and previous to remain visible, how can this be achieved?
thanks
Which script are you refering to? Please provide a link to the script's demo page on DD to we can easily see which script you mean.
Focus on Function Web Design
Fast Edit (A flat file, PHP web page editor & CMS. Small, FREE, no database!) | Fast Edit BE (Snippet Manager) (Web content editor for multiple editable regions!) | Fast Apps
I havent tested but you might be able to do it with some CSS changes;
Code:#prevLink, #nextLink{ width: 49%; height: 100%; background: transparent url(../images/blank.gif) no-repeat; /* Trick IE into showing hover */ display: block; } #prevLink { left: 0; float: left;} #nextLink { right: 0; float: right;} #prevLink, #prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; } #nextLink, #nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }
Focus on Function Web Design
Fast Edit (A flat file, PHP web page editor & CMS. Small, FREE, no database!) | Fast Edit BE (Snippet Manager) (Web content editor for multiple editable regions!) | Fast Apps
jonnyfreak (03-05-2013)
thats done it, thanks for your help![]()
Bookmarks