Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
I have a "_hidden" album on the "HOME" page with some images. I would like to be able to link (maybe HREF) when pressed to another location rather than the "_hidden" album.
Is that possible?
Offline
Not really following what you're trying to do. Do you want to add a link to the text?
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
When pressing an image in an album it takes you to the photoswipe of that album. I want to be able to define where it goes, independent of the album it came from.
Is that clear??
Offline
then you'd just want to add images to the page via html and wrap them in anchor tags. Probably the best way is to put it all inside the TTG Responsive Grid Framework. The code would look something like this for a page with four images across:
<div class="grid_12 your-custom-class">
<div class="col_3 alpha">
<a href= "#"><img src="#"/></a>
</div>
<div class="col_3">
<a href= "#"><img src="#"/></a>
</div>
<div class="col_3">
<a href= "#"><img src="#"/></a>
</div>
<div class="col_3 omega">
<a href= "#"><img src="#"/></a>
</div>
</div>
just add the urls to the other sites/pages in the anchor tags and the url to the images in the img tags.
You can add a custom class to the whole thing and thereby target elements within with custom css.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline