Hi Johnny
I played a round with this issue and the only thing I could come up with was a way to disable the clicks. I put this snippet in the head section
Code:
<script type="text/javascript">
jQuery(document).ready(function($) {
$('.noclick').click(function(){
return false;
});
});
</script>
and then assigned a class called
class="noclick"
to the links I wanted to disable, like this
Code:
<a href="http://www.nasa.gov/images/content/167040main_image_feature_738_ys_4.jpg"
class="noclick" rel="enlargeimage" rev="targetdiv:loadarea,link:http://cnn.com"
title="The Universe is just waiting to be explored">
<img src="thumbnail.jpg" width="31" height="31" alt="thumb" />
</a>
Adding the part with the blue highlight will link the larger image to a page of choice.
Bookmarks