LightBox Slideshow jquery (NotesFor.net) v3.2 - Page 5 LightBox Slideshow jquery (NotesFor.net) v3.2 - Page 5
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

LightBox Slideshow jquery (NotesFor.net) v3.2

Started by Joe Carver, December 18, 2009, 06:01:20 AM

Previous topic - Next topic

0 Members and 3 Guests are viewing this topic.

AntonLargiader

Joe, thank you very much for developing this. It's really just what I wanted. And thanks for having the patience to progress this far with it.

I also experience the cut-off bottom (after the description unrolls) while having too much empty space at the top, but I'll take a look at the code and see if anything occurs to me. It does seem odd that the page is so tall (about 1.5 or 2 screens worth) but I assume that's inherent in how LB works.

Sure it would be nice to auto-start it or even launch it from the thumbnails page but those wishes are minor.

www.largiader.com/album/
My album:  www dot largiader dot com slash album

Joe Carver

Quote from: AntonLargiader on October 17, 2010, 07:45:22 PM
......space at the top,......Sure it would be nice to auto-start.....
Done + tested for the next version. It will be a config. setting (once all of the the work is done).  :)

Quote from: AntonLargiader on October 17, 2010, 07:45:22 PM
....launch it from the thumbnails page
Please read the previous posts in this thread. :(

AntonLargiader

I did read the whole thread. That's why I didn't ask for it. :) But I do wish for it, like others do.

Cool on the box alignment. I did some reading after my last post and it seemed like it was a common lightbox problem without a simple solution.
My album:  www dot largiader dot com slash album

Spoter

I have a problem with all versions of LightBox does not work the Insert a layer trasnparente to minimize image theft

cavok

I just install this very nice plugin to my coppermine web site.

But lot of my picture title and description use a BBcode
unfortunately on LightBox Slideshow this BBcode appears with code not with format.
This would be really nice if BBcode could work.

And if in addition, the user could adjust itself time of picture display.
Not only by administrator on configuration.
Coppermine 1.5.22 hosting by Free

Αndré

Quote from: cavok on November 11, 2010, 03:34:55 PM
unfortunately on LightBox Slideshow this BBcode appears with code not with format.
You have to apply bb_decode on the appropriate string.

cavok

Sorry André, my English is certainly not terrible, but I do not see what you mean in your answer.
Quote from: Αndré on November 11, 2010, 03:56:11 PM
You have to apply bb_decode on the appropriate string.
Could you be more explicit.
Coppermine 1.5.22 hosting by Free

Αndré

The function bb_decode replaces the bbcode tags with html code. You have search where the plugin code adds the title/description to the output. Here you need to do something like
bb_decode($text);

I don't know the code, I just gave a generic hint.

cavok

Ah, I understand better now, I must write in code.... :D
It would be with joy, but unfortunately, I do not know kidney coding.  :o
Coppermine 1.5.22 hosting by Free

Joe Carver

Quote from: Αndré on November 11, 2010, 04:36:58 PM
You have search where the plugin code adds the title/description to the output.

@cavok, You can wait a few weeks while I test a working solution that can be added to the next version or look for these variables in codebase.php.


     $pic_title =

     $pic_caption =

Casper79

Hi,

short question:
Where can I change the color of the "Download Link" in the css?
I can't find it  ???

Joe Carver

Quote from: Casper79 on November 28, 2010, 05:55:25 PM
Where can I change the color of the "Download Link" in the css?

"Download Link" was added as an afterthought.  It is not in .css.
So, look in file plugins/lightbox_notes_for_net/codebase.php for this:

var downLink = '<span style="font-weight:bold;"............

Change as you wish.

Casper79

Hi,

I can't find this code on my codebase.php  ???
Here is my codebase.php: http://cl1p.net/cpm

cavok

The only file where I find:
var downLink = '<span style="font-weight:bold;"............
is in file plugins/lightbox_notes_for_net/script.js
Coppermine 1.5.22 hosting by Free

Joe Carver

Quote from: cavok on November 29, 2010, 10:35:11 AM
is in file plugins/lightbox_notes_for_net/script.js

You are correct. I was incorrect.

Casper79

Doesn't work for me ...
var downLink = '<span style="font-weight:bold; color:#000000;">
The link is still grey.
Here's a link to my gallery: http://www.portman-natalie.de/gallery/

Joe Carver

Add this to file plugins/lightbox_notes_for_net/style.css   


#lightbox-image-details-currentNumber a {
font-weight: bold;
color: #000;
}

cavok

But maybe that when BBcode will supported, it will be a problem.
Coppermine 1.5.22 hosting by Free

Joe Carver

#98
Quote from: cavok on December 01, 2010, 05:32:58 PM
But maybe that when BBcode will supported, it will be a problem.

BBcode tags will not function inside the LightBox.

I will add an option to strip the tags so that the text shows. It has been tested to be functional.

EDITED
Quote from: cavok on November 11, 2010, 03:34:55 PM
This would be really nice if BBcode could work.
Please do not repeat the same requests.

Casper79

Quote from: Joe Carver on December 01, 2010, 01:36:12 PM
Add this to file plugins/lightbox_notes_for_net/style.css   


#lightbox-image-details-currentNumber a {
font-weight: bold;
color: #000;
}

This workes perfekt!
Thank you very much  :D