A quick question in regards permalinks, and clicking on an image in themes like Tessellate.
When clicking on a image, it will open a large image. A second click will enlarge the image. If I then would like to go back to the index page. I then have to click back through a different " odd middle page", for then click on my main logo in order for me to get back onto the index page?
I’d like to keep the “larger picture function”, but Is there a way to avoid this odd middle page and the permalinks all together?
As I see it, It’s just a bunch of unnecessary clicks that IMHO create confusion for the viewer, and myself :)
Great, I like both options. I think I like the first option the best.
Then I'd be able to continue with the black background theme. Are you saying that I'd be able to implement the same zooming feature as the one I see on the image page (second click = enlarge the entire image to full size), and then at the same time bypassing the image page all together?
Is there a place, or a site where I could copy and paste some code from, or to lean more about Tumblr code and features?
Also, I'm new to Tumblr, How often do they implement new features like this. It makes me feel that its a bit insecure to put too much trust in to Tumblr?
<style>.resizingPhoto {display: block;} /* Or use inline-block, whichever one looks better with your theme. */.resizingPhoto img.smallVersion {display: none;}.resizingPhoto img.largeVersion {display: block;}.resizingPhoto.small img.largeVersion {display: none;}.resizingPhoto.small img.smallVersion {display: block;}</style><script>resizingPhotoToggle = function(element) {if (element.className.indexOf(' small') == -1) {element.className += ' small'} /* If class 'small' isn't found, then add it. */else {element.className = element.className.replace(/ ?\bsmall\b/g, '')} /* Otherwise, remove it. */}</script>{block:Photo}…{block:PermalinkPage}<a href="{Permalink}" class="resizingPhoto small" onclick="resizingPhotoToggle(this)"><img src="{PhotoURL-500}" class="smallVersion" alt="{PhotoAlt}"/><img src="{PhotoURL-HighRes}" class="largeVersion" alt="{PhotoAlt}"/></a>{/block:PermalinkPage}…{/block:Photo}