This is not a Freeway problem. You’re going to have to go through the
same steps in DW or any other environment.
The issue is that a lightbox (by which I mean any lightbox, not just
this one) modifies a link to a particular URL so that it displays in
an overlay DIV, and animates the transition to that display mode.
That’s all it does. I don’t know of any lightbox implementation that
can automatically assign a link to the overlay image from the
thumbnail side of things.
Your link to your image file carries only the URL of that file – the
large image – and nothing more. In order to have a click on that
large image do anything at all, you have to encode your intent
somewhere else, which is why you have to create a “fragment” HTML page
using the steps I outlined. If you follow those steps, then instead of
linking your thumbnail to:
<a href="Resources/myLargeImage.jpg" class="lightwindow"> (thumbnail
here) </a>
you will be linking to:
<a href="myLargeImage.html" class="lightwindow"> (thumbnail here) </a>
and that cut-down page fragment will be something like this:
<div>
<a href="http://someOtherSite.com">
<img src="Resource/myLargeImage.jpg" width="800" height="600"
alt="myLargeImage" />
</a>
</div>
If you know of another lightbox script which can assign a click URL to
the large image, please do let me know what that is – I’m always on
the lookout for new tech. But as far as I know, this is what you would
need to do to get the information into the layout that is needed for
this click to do anything at all besides the default – to hide the
large image again.
Walter
On Dec 13, 2009, at 12:01 PM, Justin Easthall wrote:
thanks - will be time to mover over to Dreamweaver soon me thinks -
i keep hitting these limitations with Freeway as much as I love it
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options