Topic: Direct Link spelling format [SOLVED]

Hi,
I am using Juicebox Pro for a gallery on my website. I have a main page with a grid of thumbnails and each thumbnail opens the Juicebox gallery. The link that surrounds the thumbnail is like this:

<a  href="galley/index.html"> <img src="gallery/thumbs/image01.jpg"></a>
<a  href="galley/index.html"> <img src="gallery/thumbs/image02.jpg"></a>
and so on...

Unfortunately, the gallery always starts with the first image. Would you be able to tell me what is the correct spelling for the linkURL and how to use it instead of the traditional <a> link in this example?

Thank you very much.

Re: Direct Link spelling format [SOLVED]

Unfortunately, the gallery always starts with the first image.

I'm not sure what you would rather have. Please explain in greater details what it is that you are trying to do and I'll try to help you out.

If you are looking to have your thumbnail links go to different images within a gallery, then set enableDirectLinks="TRUE" (in JuiceboxBuilder-Pro's 'Customize -> General' section) and you can refer to specific images with a # identifier at the end of the URL. For example http://www.example.com/gallery/index.html#7 would go directly to the 7th image in the gallery.

Would you be able to tell me what is the correct spelling for the linkURL...

linkURLs can be set on the 'Images' tab of JuiceboxBuilder.
If an image has been assigned a linkURL, then this URL will be opened when the user clicks the Open Image button (when showOpenButton="TRUE") or when the user clicks the main image (when imageClickMode="OPEN_URL").
linkURLs can be relative (to the page containing the gallery's embedding code) or absolute in the form http://www.example.com/index.html.
linkURLs are stored in the gallery's 'config.xml' file.
A sample <image> entry containing a linkURL will look something like this:

<image imageURL="images/IMG_0001.jpg"
    thumbURL="thumbs/IMG_0001.jpg"
    linkURL="http://www.example.com/index.html"
    linkTarget="_blank">
    <title>Image title goes here.</title>
    <caption>Image caption goes here.</caption>
</image>

Re: Direct Link spelling format [SOLVED]

Thank you so much for the prompt response. That solved the problem.
Best,
Vlad

Re: Direct Link spelling format [SOLVED]

That's great!
Thank you for posting back to let me know.